export interface ITranslationModel { id: string; value: string; key: string; languageId: number; } export interface ITranslationListModel { [key: string]: T; } export interface IGetAllTranslationArg { languageId: number; search?: string; } export interface IGetAllTranslationsByKeyArg { languageId: number; keys: string[]; } export interface ITranslationArg { languageId: number; key: string; value: string; } export interface ITranslationDeleteArg { key: string; } export interface ISetTranslationArg { translation?: ITranslationArg; translations?: ITranslationArg[]; } export interface ITransaltionsType { [key: string]: string; } export interface ICultureTranslation { [key: string]: string; } export interface ITranslationsByCulture { [key: string]: ICultureTranslation; } export interface IExportTranslationsArg { languagesId: number[]; } export interface ITranslationResponse { id: string; key: string; value: string; languageId: number; } export interface ITranslationInput { key: string; value: string; languageId: number; } //# sourceMappingURL=models.d.ts.map