UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

12 lines (11 loc) 452 B
import { Observable } from "rxjs"; import { SelectV2OptionComponent } from "./option/select-v2-option.component"; export interface IOptionedComponent { multiselect?: boolean; valueChanged?: Observable<InputValueTypes>; valueSelected?: Observable<any>; isTypeaheadEnabled?: boolean; selectedOptions: SelectV2OptionComponent[]; selectOption(option: SelectV2OptionComponent): void; } export type InputValueTypes = number | string;