nestjs-i18n
Version:
The i18n module for Nest.
16 lines (15 loc) • 345 B
TypeScript
export interface TranslateOptions {
lang?: string;
args?: ({
[k: string]: any;
} | string)[] | {
[k: string]: any;
};
defaultValue?: string;
debug?: boolean;
useICU?: boolean;
keySeparator?: string | false;
nsSeparator?: string | false;
returnObjects?: boolean;
joinArrays?: string;
}