UNPKG

470 BTypeScriptView Raw
1import { NgCliWebpackConfig } from './webpack-config';
2export interface XI18WebpackOptions {
3 genDir?: string;
4 buildDir?: string;
5 i18nFormat?: string;
6 verbose?: boolean;
7 progress?: boolean;
8 app?: string;
9}
10export declare class XI18nWebpackConfig extends NgCliWebpackConfig {
11 extractOptions: XI18WebpackOptions;
12 appConfig: any;
13 config: any;
14 constructor(extractOptions: XI18WebpackOptions, appConfig: any);
15 buildConfig(): any;
16}