forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
18 lines (16 loc) · 707 Bytes
/
Copy pathindex.js
File metadata and controls
18 lines (16 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2021-2023 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import SwiftDocCRenderPlugin from './src/setup-utils/SwiftDocCRenderPlugin';
import createRouterInstance from './src/setup-utils/SwiftDocCRenderRouter';
import createi18nInstance from './src/setup-utils/SwiftDocCRenderi18n';
import defaultRoutes from './src/routes';
export {
SwiftDocCRenderPlugin, createRouterInstance, createi18nInstance, defaultRoutes,
};