typescript export import in the same time

Solutions on MaxInterview for typescript export import in the same time by the best coders in the world

showing results for - "typescript export import in the same time"
Juan David
05 Apr 2016
1// ./User.ts
2...
3export default a
4export default b
5
6// modules-hub.ts
7export * from './User.ts'
8export * from './Shop.ts'
9
10// Usage
11import { a, b } from '../modules-hub.ts'