/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { TrelloID } from "../definitions/TrelloID"; import { Color } from "../definitions/Color"; export interface Label { /** * The ID of the label. */ id?: TrelloID; /** * The ID of the board the label is on. */ idBoard?: TrelloID; /** * The name displayed for the label. */ name?: string; /** * The color of the label. Null means no color and the label will not be shown on the front of Cards. */ color?: Color; } //# sourceMappingURL=Label.d.ts.map