nestjs-i18n
Version:
The i18n module for Nest.
12 lines (11 loc) • 318 B
TypeScript
import { I18nAbstractLoaderOptions } from '../loaders';
type LoaderFormat = 'json' | 'yaml';
export interface GenerateI18nTypesOptions extends I18nAbstractLoaderOptions {
output: string;
format?: LoaderFormat;
}
export interface GenerateI18nTypesResult {
output: string;
written: boolean;
}
export {};