UNPKG

679 BTypeScriptView Raw
1import * as plugins from './tsbundle.plugins';
2export declare class TsBundle {
3 /**
4 * the basic default options for rollup
5 */
6 getBaseOptions(fromArg?: string, toArg?: string): plugins.rollup.RollupOptions;
7 getOptionsTest(fromArg: string, toArg: string): plugins.rollup.RollupOptions;
8 getOptionsProduction(fromArg: string, toArg: string): plugins.rollup.RollupOptions;
9 constructor();
10 /**
11 * creates a bundle for the test enviroment
12 */
13 buildTest(fromArg: string, toArg: string): Promise<void>;
14 /**
15 * creates a bundle for the production environment
16 */
17 buildProduction(fromArg: string, toArg: string): Promise<void>;
18}