UNPKG

316 BTypeScriptView Raw
1import type { BundleOptions, OutputModule } from './types';
2export interface RollupOptions {
3 cwd: string;
4 watch?: boolean;
5 type: OutputModule;
6 target?: 'browser' | 'node';
7 bundleOpt: BundleOptions;
8 verbose?: boolean;
9}
10export default function rollupBuild(opts: RollupOptions): Promise<void>;