UNPKG

@junte/ui

Version:

Quality Angular UI components kit

17 lines (16 loc) 297 B
export declare type Key = number | string; export interface IOption { index: number; key: Key; label: string; value: any; icon?: Key; } export declare class Options { persisted: { [key: string]: IOption; }; found: { [key: string]: IOption; }; }