UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

11 lines (10 loc) 748 B
import { ChangeDetectorRef, ElementRef, IterableDiffers } from '@angular/core'; import { CdkTable, CdkTableModule } from '@angular/cdk/table'; import { NbDirectionality } from '../bidi/bidi-service'; import { NbPlatform } from '../platform/platform-service'; export declare const NB_TABLE_TEMPLATE = "\n <ng-container nbHeaderRowOutlet></ng-container>\n <ng-container nbRowOutlet></ng-container>\n <ng-container nbFooterRowOutlet></ng-container>"; export declare class NbTable<T> extends CdkTable<T> { constructor(differs: IterableDiffers, changeDetectorRef: ChangeDetectorRef, elementRef: ElementRef, role: string, dir: NbDirectionality, document: any, platform: NbPlatform); } export declare class NbTableModule extends CdkTableModule { }