/** * Represents the `IDataListColumnDefinition` interface. * * @public */ export interface IDataListItemDefinition { /** * Identifies the data item to be displayed in this column */ key: string; /** * Column title, if not provided key is used as title */ title?: string; /** * The member path of the data to bind in the table cell */ path?: string; /** * Shows the column or not. */ hidden?: string; } //# sourceMappingURL=IDataListItemDefinition.d.ts.map