2016-08-12 14:45:36 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
export class CliOptions {
|
|
|
|
public basePath: string;
|
|
|
|
constructor({basePath = null}: {basePath?: string}) { this.basePath = basePath; }
|
|
|
|
}
|
|
|
|
|
|
|
|
export class I18nExtractionCliOptions extends CliOptions {
|
2017-02-15 18:50:03 +01:00
|
|
|
i18nFormat: string|null;
|
|
|
|
locale: string|null;
|
|
|
|
outFile: string|null;
|
2016-08-12 14:45:36 -07:00
|
|
|
|
2017-02-15 18:50:03 +01:00
|
|
|
constructor({i18nFormat = null, locale = null, outFile = null}: {
|
|
|
|
i18nFormat?: string,
|
|
|
|
locale?: string,
|
|
|
|
outFile?: string,
|
|
|
|
}) {
|
2016-08-12 14:45:36 -07:00
|
|
|
super({});
|
|
|
|
this.i18nFormat = i18nFormat;
|
2017-02-16 17:03:18 +01:00
|
|
|
this.locale = locale;
|
2017-02-15 18:50:03 +01:00
|
|
|
this.outFile = outFile;
|
2016-08-12 14:45:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class NgcCliOptions extends CliOptions {
|
|
|
|
public i18nFormat: string;
|
|
|
|
public i18nFile: string;
|
|
|
|
public locale: string;
|
2017-04-13 09:17:37 +02:00
|
|
|
public missingTranslation: string;
|
2016-08-12 14:45:36 -07:00
|
|
|
|
2017-04-13 09:17:37 +02:00
|
|
|
constructor({i18nFormat = null, i18nFile = null, locale = null, missingTranslation = null,
|
|
|
|
basePath = null}: {
|
|
|
|
i18nFormat?: string,
|
|
|
|
i18nFile?: string,
|
|
|
|
locale?: string,
|
|
|
|
missingTranslation?: string,
|
|
|
|
basePath?: string
|
|
|
|
}) {
|
2016-08-12 14:45:36 -07:00
|
|
|
super({basePath: basePath});
|
|
|
|
this.i18nFormat = i18nFormat;
|
|
|
|
this.i18nFile = i18nFile;
|
|
|
|
this.locale = locale;
|
2017-04-13 09:17:37 +02:00
|
|
|
this.missingTranslation = missingTranslation;
|
2016-08-12 14:45:36 -07:00
|
|
|
}
|
|
|
|
}
|