/** * ngTable: Table + Angular JS * * @author Vitalii Savchuk * @url https://github.com/esvit/ng-table/ * @license New BSD License */ import { IParamValues } from './ngTableParams'; import { ISettings } from './ngTableSettings'; /** * An angular value object that allow for overriding of the initial default values used when constructing * an instance of `NgTableParams` */ export interface IDefaults { params?: IParamValues; settings?: ISettings; } /** * Default values for ngTable */ export declare let ngTableDefaults: IDefaults;