UNPKG

air-lib

Version:

This is Air's angular component library

13 lines (12 loc) 313 B
import { Type } from '@angular/core'; export interface ITileInfoNode { tileId: string; nameKey: string; name: string; component: Type<any>; filterState?: string; childrens?: Array<ITileInfoNode>; parent?: ITileInfoNode; isDefault?: boolean; loadOnInit?: boolean; }