UNPKG

clarity-angular

Version:

Angular components for Clarity

17 lines (16 loc) 716 B
import { ChangeDetectorRef, OnInit } from "@angular/core"; import { DatagridColumnToggle } from "./datagrid-column-toggle"; import { HideableColumnService } from "./providers/hideable-column.service"; import { Selection, SelectionType } from "./providers/selection"; export declare class DatagridFooter implements OnInit { selection: Selection; hideableColumnService: HideableColumnService; cdr: ChangeDetectorRef; constructor(selection: Selection, hideableColumnService: HideableColumnService, cdr: ChangeDetectorRef); activeToggler: boolean; private subscriptions; SELECTION_TYPE: typeof SelectionType; toggle: DatagridColumnToggle; ngOnInit(): void; ngOnDestroy(): void; }