@kelvininc/ui-components
Version:
Kelvin UI Components
19 lines (18 loc) • 642 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
import { ITimePickerSelectOption, ITimePickerSelectOptionEvents } from './time-picker-select-option.types';
export declare class KvTimePickerSelectOption implements ITimePickerSelectOption, ITimePickerSelectOptionEvents {
/** @inheritdoc */
label: string;
/** @inheritdoc */
description?: string;
/** @inheritdoc */
value: string;
/** @inheritdoc */
selected?: boolean;
/** @inheritdoc */
customAttributes?: Record<string, string>;
/** @inheritdoc */
itemSelected: EventEmitter<string>;
private onItemClick;
render(): any;
}