fix(core): update
This commit is contained in:
parent
66f3e66c8b
commit
9927323a9d
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '1.0.213',
|
version: '1.0.214',
|
||||||
description: 'website for lossless.com'
|
description: 'website for lossless.com'
|
||||||
}
|
}
|
||||||
|
@ -57,10 +57,12 @@ export interface ITableAction<T = any> {
|
|||||||
* @param itemArg
|
* @param itemArg
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
actionFunc: (optionsArg: {
|
actionFunc: (actionDataArg: ITableActionDataArg<T>) => Promise<any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ITableActionDataArg<T> {
|
||||||
item: T,
|
item: T,
|
||||||
dataArray: T[],
|
dataArray: T[],
|
||||||
}) => Promise<any>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type TDisplayFunction<T = any> = (itemArg: T) => object;
|
export type TDisplayFunction<T = any> = (itemArg: T) => object;
|
||||||
|
Loading…
Reference in New Issue
Block a user