UNPKG

air-lib

Version:

This is Air's angular component library

19 lines (18 loc) 377 B
export interface ISimpleNgSelectItem { id: string; text: string; } export interface ICompleteSelectItem extends ISimpleNgSelectItem { id: string; text: string; rawData: any; } export interface IChildNgSelectItem { text: string; children: [{ id: string; text: string; }]; } export declare class SelectModule { }