1 | import type { OutputAsset, OutputChunk, RollupCache } from 'rollup';
|
2 | import { OutputFileCache } from '../ng-package/nodes';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export interface RollupOptions {
|
9 | moduleName: string;
|
10 | entry: string;
|
11 | entryName: string;
|
12 | dir: string;
|
13 | sourceRoot: string;
|
14 | cache?: RollupCache;
|
15 | cacheDirectory?: string | false;
|
16 | fileCache: OutputFileCache;
|
17 | cacheKey: string;
|
18 | }
|
19 |
|
20 | export declare function rollupBundleFile(opts: RollupOptions): Promise<{
|
21 | cache: RollupCache;
|
22 | files: (OutputChunk | OutputAsset)[];
|
23 | }>;
|