idea-toolbox
Version:
IDEA's utility functions
41 lines (40 loc) • 945 B
TypeScript
import { Resource } from './resource.model';
export declare class Check extends Resource {
/**
* The unique identifier for the check element.
*/
value: string | number;
/**
* Displayed name (description) of the check element.
*/
name: string;
/**
* Whether the check is true or false.
*/
checked: boolean;
/**
* Elements not included in the current search because of other filters.
*/
hidden: boolean;
/**
* URL to an avatar to display for the element.
*/
avatar: string;
/**
* The color shape to display (instead of an avatar) for the element.
*/
color: string;
/**
* A description with additional information on the check.
*/
description: string;
/**
* An optional first category.
*/
category1: any;
/**
* An optional second category.
*/
category2: any;
load(x?: any): void;
}