/// /** * ngTable: Table + Angular JS * * @author Vitalii Savchuk * @url https://github.com/esvit/ng-table/ * @license New BSD License */ import { IDirective } from 'angular'; /** * A dynamic version of the {@link ngTable ngTable} directive that accepts a dynamic list of columns * definitions to render * @ngdoc directive * * @example * ```html * * * * *
{{row[col.field]}}
* ``` */ export declare function ngTableDynamic(): IDirective;