UNPKG

@atproto/api

Version:

Client library for atproto and Bluesky

22 lines 486 B
export class ModerationUI { constructor() { this.noOverride = false; this.filters = []; this.blurs = []; this.alerts = []; this.informs = []; } get filter() { return this.filters.length !== 0; } get blur() { return this.blurs.length !== 0; } get alert() { return this.alerts.length !== 0; } get inform() { return this.informs.length !== 0; } } //# sourceMappingURL=ui.js.map