@hxui/angular
Version:
An Angular library based on the [HXUI design system](https://hxui.io).
12 lines (11 loc) • 515 B
TypeScript
import { ITabularColumn, ITabularColumnOptions, TabularColumnTypes } from "./tabular-column.interface";
export declare class TabularColumn implements ITabularColumn {
id: string;
label: string;
dataType: TabularColumnTypes;
sortable: boolean;
cssClass: string;
hidden: boolean;
options?: ITabularColumnOptions;
constructor(id: string, label: string, dataType: TabularColumnTypes, sortable: boolean, cssClass?: string, hidden?: boolean, options?: ITabularColumnOptions);
}