src/app/model/dto/translation.dto.ts
DTO for translation keys and their parameters.
Properties |
key |
key:
|
Type : string
|
params |
params:
|
Type : Record<string | string>
|
Optional |
export interface TranslationDTO {
key: string;
params?: Record<string, string>;
}