File

src/app/core/models/visibility-item.ts

Description

Interface for visibility item data

Index

Properties

Properties

id
id: string | number
Type : string | number

Id of the item

name
name: string
Type : string

Name of the item

opacity
opacity: number
Type : number
Optional

Opacity value

tooltip
tooltip: string
Type : string
Optional

Tooltip text to be displayed in the stage

visible
visible: boolean
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;
}

results matching ""

    No results matching ""