/** * Types for translation values */ export type TranslationValue = string | number | boolean | Record | unknown[]; /** * Structure of translation data * locale -> sheet -> key -> value */ export type TranslationData = Record>>; /** * Structure for a Google Sheet row */ export type SheetRow = Record; /** * Environment variables required by the package */ export interface GoogleEnvVars { GOOGLE_CLIENT_EMAIL: string; GOOGLE_PRIVATE_KEY: string; GOOGLE_SPREADSHEET_ID: string; } //# sourceMappingURL=types.d.ts.map