elk/types/translation-status.ts

8 lines
132 B
TypeScript
Raw Permalink Normal View History

export interface ElkTranslationStatus {
total: number
locales: Record<string, {
percentage: string
total: number
}>
}