UNPKG

235 BTypeScriptView Raw
1import { TableOptions } from './table-options';
2import { Model } from '../model/model';
3export declare function Table<M extends Model = Model>(options: TableOptions<M>): Function;
4export declare function Table(target: Function): void;