UNPKG

air-lib

Version:

This is Air's angular component library

14 lines (13 loc) 405 B
import { Type } from '@angular/core'; import { ITileInfoNode } from '../interfaces/itile-info-node'; export declare class TileInfoNode implements ITileInfoNode { tileId: string; nameKey: string; name: string; component: Type<any>; filterState?: string; childrens?: Array<ITileInfoNode>; parent?: ITileInfoNode; isDefault?: boolean; loadOnInit?: boolean; }