@hxui/angular
Version:
This README includes the steps that are necessary to import the HxUi-angular into a project or to contribute with development.
11 lines (10 loc) • 371 B
TypeScript
import { ITabularColumn } from './tabular-column.interface';
export declare class TabularColumn implements ITabularColumn {
id: string;
label: string;
dataType: number;
sortable: boolean;
cssClass: string;
options: any;
constructor(id: string, label: string, dataType: number, sortable: boolean, cssClass?: string, options?: any);
}