33 lines
682 B
TypeScript
33 lines
682 B
TypeScript
// Business
|
|
import * as business from './business/index.js';
|
|
|
|
// Code
|
|
import * as code from './code/index.js';
|
|
|
|
// Container
|
|
import * as container from './container/index.js';
|
|
|
|
// Database
|
|
import * as database from './database/index.js';
|
|
|
|
// Finance
|
|
import * as finance from './finance/index.js';
|
|
|
|
// Content
|
|
import * as content from './content/index.js';
|
|
|
|
// General
|
|
import * as general from './general/index.js';
|
|
|
|
// Network
|
|
import * as network from './network/index.js';
|
|
|
|
// SaaS
|
|
import * as saas from './saas/index.js';
|
|
|
|
export { business, container, code, database, finance, content, general, network, saas };
|
|
|
|
import type * as typeFest from 'type-fest';
|
|
|
|
export { typeFest };
|