UNPKG

otus-localization

Version:

A translation tool for Angular i18n(angular-t9n)

13 lines (12 loc) 359 B
import { Rule } from '@angular-devkit/schematics'; interface Schema { /** Name of the project to target. */ project: string; translationFile: string; autoTargetFile?: string; targetTranslationPath: string; includeContextInTarget: boolean; packageScript: boolean; } declare function ngAdd(_options: Schema): Rule; export { ngAdd };