1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-20 23:22:00 +03:00
elk/docs/types.ts

12 lines
226 B
TypeScript
Raw Normal View History

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