vscode-ext-localisation
Version:
Localisation for VSCode Extensions using package.nls.json files
12 lines (11 loc) • 341 B
TypeScript
export declare type TranslationType = string | string[];
export declare type PlaceholderType = string | number;
export interface Placeholders {
[key: string]: PlaceholderType;
}
export interface Translations {
[key: string]: TranslationType | Translations;
}
export interface TranslationCache {
[key: string]: TranslationType;
}