UNPKG

@tylertech/forge-build-tools

Version:
17 lines (16 loc) 489 B
import { ModuleFormat, GlobalsOption, Plugin } from 'rollup'; export interface IRollupBundleConfig { input: string; name: string; format: ModuleFormat; file: string; version: string; globals: GlobalsOption; banner: string; plugins: Plugin[]; } /** * Creates a rollup bundle from the provided configuration. * @param config The rollup bundle configuration options. */ export declare function createRollupBundle(config: IRollupBundleConfig): Promise<any>;