@angular-generic-table/core
Version:
A generic table component for Angular
7 lines (6 loc) • 334 B
TypeScript
import { PipeTransform } from '@angular/core';
import { GtConfigField } from '../interfaces/gt-config-field';
import { GtRow } from '../interfaces/gt-row';
export declare class GtColumnClassPipe implements PipeTransform {
transform(gtFields: Array<GtConfigField<any, any>>, column: GtConfigField<GtRow, any>, row?: GtRow): any;
}