6 lines
236 B
TypeScript
6 lines
236 B
TypeScript
export * as Car from './car';
|
|
export * as Customer from './customer';
|
|
export * as Washing from './washing';
|
|
export * as Order from './order'; // import: Car, Customer, Washing
|
|
export * as Review from './review';
|
|
export * from './stubs'; |