UNPKG

171 BTypeScriptView Raw
1export interface SelectPopoverOption {
2 text: string;
3 value: string;
4 disabled: boolean;
5 checked: boolean;
6 cssClass?: string | string[];
7 handler?: () => void;
8}