fix(core): update
This commit is contained in:
parent
66f3e66c8b
commit
9927323a9d
@ -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'
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user