UNPKG

231 BTypeScriptView Raw
1export declare type SelectInterface = 'action-sheet' | 'popover' | 'alert';
2export declare type SelectCompareFn = (currentValue: any, compareValue: any) => boolean;
3export interface SelectChangeEventDetail<T = any> {
4 value: T;
5}