Don't export internal stuff:
1link/*~*/export~~~~~~/*~*/ function internalFunction() { /* ... */ }
Don't export classes:
1link/*~*/export~~~~~~ ~class~~~~~ ~A~ ~{~}~/*~*/
If you have functions in other folders, export them from index.ts
:
1linkexport * from './src';