elk/docs/types.ts
2023-05-15 14:35:43 +02:00

13 lines
244 B
TypeScript

export interface LocaleEntry {
title: string
file: string
useFile: string
translated: string[]
missing: string[]
outdated: string[]
total: number
isSource?: boolean
}
export type TranslationStatus = Record<string, LocaleEntry>