UNPKG

@elgato/streamdeck

Version:

The official Node.js SDK for creating Stream Deck plugins.

10 lines (9 loc) 399 B
import type { JsonObject } from "@elgato/utils"; import type { Language } from "@elgato/utils/i18n"; import type { Language as SupportedLanguage } from "../api/i18n.js"; /** * Loads a locale from the file system. * @param language Language to load. * @returns Contents of the locale. */ export declare function fileSystemLocaleProvider(language: Language<SupportedLanguage>): JsonObject | null;