Interface LanguagePackBundle

Starting with vscode 1.73.0, language pack bundles have changed their shape to accommodate the new l10n API. They are now a record of { [englishValue]: translation }

interface LanguagePackBundle {
    contents: Record<string, string>;
    uri: string;
}

Properties

Properties

contents: Record<string, string>
uri: string