1 | import { IBundleOptions, IOpts } from './src/types';
|
2 |
|
3 | export { IBundleOptions, IOpts };
|
4 | export function build(opts: IOpts): Promise<any>;
|
5 |
|
6 | export interface IDocOpts {
|
7 | cwd: string;
|
8 | cmd: string;
|
9 | params?: any;
|
10 | userConfig?: any;
|
11 | }
|
12 |
|
13 | interface IDoc {
|
14 | devOrBuild(opts: IDocOpts): Promise<any>;
|
15 | }
|
16 |
|
17 | export const doc: IDoc;
|