27 lines
491 B
TypeScript
27 lines
491 B
TypeScript
// Business
|
|
import * as business from './business';
|
|
|
|
// Container
|
|
import * as container from './container';
|
|
|
|
// Finance
|
|
import * as finance from './finance';
|
|
|
|
// Content
|
|
import * as content from './content';
|
|
|
|
// General
|
|
import * as general from './general';
|
|
|
|
// Network
|
|
import * as network from './network';
|
|
|
|
// SaaS
|
|
import * as saas from './saas';
|
|
|
|
export { business, container, finance, content, general, network, saas };
|
|
|
|
import type * as typeFest from 'type-fest';
|
|
|
|
export { typeFest };
|