mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-7856] Show variables in table
This commit is contained in:
@@ -29,7 +29,7 @@ export interface DataColumnTypes {
|
||||
|
||||
export type DataColumnType = keyof DataColumnTypes;
|
||||
|
||||
export interface DataColumn {
|
||||
export interface DataColumn<T = unknown> {
|
||||
id?: string;
|
||||
key: string;
|
||||
type: DataColumnType;
|
||||
@@ -47,4 +47,5 @@ export interface DataColumn {
|
||||
header?: TemplateRef<any>;
|
||||
draggable?: boolean;
|
||||
isHidden?: boolean;
|
||||
customData?: T;
|
||||
}
|
||||
|
Reference in New Issue
Block a user