projects/commons/src/lib/elements/tooltip/interfaces/tooltip.interface.ts
Properties |
|
| color |
color:
|
Type : Colors
|
| isActive |
isActive:
|
Type : boolean
|
| Optional |
| isMultiLine |
isMultiLine:
|
Type : boolean
|
| Optional |
| label |
label:
|
Type : string
|
| position |
position:
|
Type : "left" | "top" | "right" | "bottom"
|
import { Colors } from '../../../shared/enums';
export interface ITooltip {
label: string;
isActive?: boolean;
isMultiLine?: boolean;
color: Colors;
position: 'left' | 'top' | 'right' | 'bottom';
}