/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { CardAgingAsResponse } from "../definitions/CardAgingAsResponse"; import { TrelloIDAsResponse } from "../definitions/TrelloIDAsResponse"; import { ImageDescriptorAsResponse } from "../definitions/ImageDescriptorAsResponse"; export interface PrefsAsResponse { permissionLevel?: "org" | "board"; hideVotes?: boolean; voting?: "disabled" | "enabled"; comments?: string; invitations?: any; selfJoin?: boolean; cardCovers?: boolean; isTemplate?: boolean; cardAging?: CardAgingAsResponse; calendarFeedEnabled?: boolean; background?: TrelloIDAsResponse; backgroundImage?: string; backgroundImageScaled?: Array; backgroundTile?: boolean; backgroundBrightness?: string; backgroundBottomColor?: string; backgroundTopColor?: string; canBePublic?: boolean; canBeEnterprise?: boolean; canBeOrg?: boolean; canBePrivate?: boolean; canInvite?: boolean; } //# sourceMappingURL=PrefsAsResponse.d.ts.map