UNPKG

517 BTypeScriptView Raw
1import { InjectionToken, Provider, ValueProvider } from 'injection-js';
2export declare const OPTIONS_TOKEN: InjectionToken<NgPackagrOptions>;
3export interface NgPackagrOptions {
4 /** Whether or not ng-packagr will watch for file changes and perform an incremental build. */
5 watch?: boolean;
6 cacheEnabled?: boolean;
7 cacheDirectory?: string;
8 poll?: number;
9}
10export declare const provideOptions: (options?: NgPackagrOptions) => ValueProvider;
11export declare const DEFAULT_OPTIONS_PROVIDER: Provider;