vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
20 lines (19 loc) • 457 B
TypeScript
export declare class DataTableColumnConfiguration {
id: string;
type: string;
label?: string;
fieldName?: string;
width?: number;
hasCopyButton: boolean;
isResizable: boolean;
sortable: boolean;
sortBy?: string;
hasMenu: boolean;
typeAttributes?: any;
sortedAscending: boolean;
sortedDescending: boolean;
fullWidth?: number;
offsetLeft?: number;
left?: number;
constructor(column: any);
}