UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

21 lines 491 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents a localization. */ class Localization { constructor() { /** * Strings translated to the specified `locale`. */ this.Data = {}; } /** * Gets the locales of the translations. */ GetLocales() { return Object.keys(this.Data); } } exports.Localization = Localization; //# sourceMappingURL=Localization.js.map