UNPKG

@jsverse/transloco

Version:

The internationalization (i18n) library for Angular

21 lines (20 loc) 517 B
import { Schema } from '@schematics/angular/module/schema'; import { TranslationFileFormat } from '../types'; export interface SchemaOptions extends Schema { /** * The folder that contain the root translation files. */ translationPath: string; /** * The translated files format. */ format: TranslationFileFormat; /** * The source directory that contain the translated files. */ source: string; /** * The root project name. */ project: string; }