UNPKG

angular-t9n

Version:

A translation tool for Angular i18n

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