UNPKG

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