UNPKG

@bemedev/i18n

Version:

Internationalization library for Bemedev projects, providing utilities for managing translations and locale-specific content.

18 lines (16 loc) 333 B
class CustomMessage { _translate; _args; constructor(_translate, _args) { this._translate = _translate; this._args = _args; } get translate() { return this._translate; } get args() { return this._args; } } export { CustomMessage }; //# sourceMappingURL=message.js.map