@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 421 B
TypeScript
/**
* Represents data for a single localization
*/
export class LocaleDataset {
/**
*
* Does a given key exist?
* @param {string} key
* @return {boolean}
*/
hasKey(key: string): boolean;
/**
*
* @param {string} key
* @returns {string|Object|undefined}
*/
get(key: string): string | any | undefined;
#private;
}
//# sourceMappingURL=LocaleDataset.d.ts.map