Skip to content

Commit c6559d2

Browse files
committed
feat: Add initial implementation of package exports to avoid naming conflicts
1 parent 16cb169 commit c6559d2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

index.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Export packages under namespaces to avoid naming conflicts
2+
import * as api from './packages/api';
3+
import * as base from './packages/base';
4+
import * as config from './packages/config';
5+
import * as database from './packages/database';
6+
import * as file from './packages/file';
7+
import * as navigation from './packages/navigation';
8+
import * as shared from './packages/shared';
9+
import * as template from './packages/template';
10+
import * as user from './packages/user';
11+
12+
export {
13+
api,
14+
base,
15+
config,
16+
database,
17+
file,
18+
navigation,
19+
shared,
20+
template,
21+
user
22+
};

0 commit comments

Comments
 (0)