fix(core): update

This commit is contained in:
Philipp Kunz 2023-09-22 19:42:23 +02:00
parent 66f3e66c8b
commit 9927323a9d
2 changed files with 7 additions and 5 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-catalog',
version: '1.0.213',
version: '1.0.214',
description: 'website for lossless.com'
}

View File

@ -57,10 +57,12 @@ export interface ITableAction<T = any> {
* @param itemArg
* @returns
*/
actionFunc: (optionsArg: {
item: T,
dataArray: T[],
}) => Promise<any>;
actionFunc: (actionDataArg: ITableActionDataArg<T>) => Promise<any>;
}
export interface ITableActionDataArg<T> {
item: T,
dataArray: T[],
}
export type TDisplayFunction<T = any> = (itemArg: T) => object;