Files
books/utils/types.ts
T
2022-05-23 16:18:21 +05:30

3 lines
124 B
TypeScript

export type Translation = { translation: string; context?: string };
export type LanguageMap = Record<string, Translation>;