mirror of https://github.com/elk-zone/elk.git
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
|
export interface LocaleEntry {
|
||
|
title: string
|
||
|
file: string
|
||
|
translated: string[]
|
||
|
missing: string[]
|
||
|
outdated: string[]
|
||
|
total: number
|
||
|
isSource?: boolean
|
||
|
}
|
||
|
|
||
|
export type TranslationStatus = Record<string, LocaleEntry>
|