UNPKG

346 BTypeScriptView Raw
1/**
2 * directive that renders the group header row for a table
3 * @ngdoc directive
4 * @example
5 * ```html
6 * <ng-table-group-row></ng-table-group-row>
7 * ```
8 */
9export declare function ngTableGroupRow(): {
10 restrict: string;
11 replace: boolean;
12 templateUrl: any;
13 scope: boolean;
14 controller: string;
15 controllerAs: string;
16};