UNPKG

@tidecloak/js

Version:

TideCloak client side JS SDK

23 lines 618 B
export default class VendorSettings { /** * @param {boolean} regOn * @param {boolean} backupOn * @param {string} imageURL * @param {string} logoURL */ constructor(regOn, backupOn, imageURL, logoURL) { this.regOn = regOn; this.backupOn = backupOn; this.imageURL = imageURL; this.logoURL = logoURL; } toString() { return JSON.stringify({ RegOn: this.regOn, BackupOn: this.backupOn, ImageURL: this.imageURL, LogoURL: this.logoURL }); } } //# sourceMappingURL=VendorSettings.js.map