gcal-commander
Version:
A command-line interface for Google Calendar operations
13 lines (12 loc) • 372 B
TypeScript
/**
* Supported languages for internationalization
*/
export declare const SUPPORTED_LANGUAGES: readonly ["de", "en", "es", "fr", "ja", "ko", "pt"];
/**
* Type for supported language codes
*/
export type SupportedLanguage = (typeof SUPPORTED_LANGUAGES)[number];
/**
* Default language for the application
*/
export declare const DEFAULT_LANGUAGE: SupportedLanguage;