UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

12 lines 253 B
export class ResourceBundle { constructor(name) { this.name = name; } static getBundle(name) { return new ResourceBundle(name); } getString(_str) { return ""; } } //# sourceMappingURL=ResourceBundle.js.map