src/app/core/models/visibility-item.ts
Interface for visibility item data
Properties |
id |
id:
|
Type : string | number
|
Id of the item |
name |
name:
|
Type : string
|
Name of the item |
opacity |
opacity:
|
Type : number
|
Optional |
Opacity value |
tooltip |
tooltip:
|
Type : string
|
Optional |
Tooltip text to be displayed in the stage |
visible |
visible:
|
Type : boolean
|
Whether the item is currently highlighted |
export interface VisibilityItem {
/**
* Id of the item
*/
id: string | number;
/**
* Name of the item
*/
name: string;
/**
* Whether the item is currently highlighted
*/
visible: boolean;
/**
* Opacity value
*/
opacity?: number;
/**
* Tooltip text to be displayed in the stage
*/
tooltip?: string;
}