UNPKG

ngx-mat-dynamic-table

Version:
17 lines (16 loc) 416 B
import { Observable } from 'rxjs'; export interface ColumnStorage { tableId: string; visibleColumns: string[]; } export declare class ColumnStorageService { dbName: string; storeName: string; version: number; db: any; objectStore: any; constructor(); isDbOpen(): boolean; save(doc: ColumnStorage): void; read(tableId: string): Observable<ColumnStorage>; }