source: trip-planner-front/node_modules/@angular-devkit/build-angular/src/utils/action-executor.d.ts@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { I18nOptions } from './i18n-options';
9import { InlineOptions, ProcessBundleOptions, ProcessBundleResult } from './process-bundle';
10export declare class BundleActionExecutor {
11 private workerOptions;
12 private workerPool?;
13 private cache?;
14 constructor(workerOptions: {
15 cachePath?: string;
16 i18n: I18nOptions;
17 }, integrityAlgorithm?: string);
18 private ensureWorkerPool;
19 process(action: ProcessBundleOptions): Promise<ProcessBundleResult>;
20 processAll(actions: Iterable<ProcessBundleOptions>): AsyncIterable<ProcessBundleResult>;
21 inline(action: InlineOptions): Promise<{
22 file: string;
23 diagnostics: {
24 type: string;
25 message: string;
26 }[];
27 count: number;
28 }>;
29 inlineAll(actions: Iterable<InlineOptions>): AsyncIterable<{
30 file: string;
31 diagnostics: {
32 type: string;
33 message: string;
34 }[];
35 count: number;
36 }>;
37 private static executeAll;
38 stop(): void;
39}
Note: See TracBrowser for help on using the repository browser.