diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index aeb5465..30f5271 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -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' } diff --git a/ts_web/elements/dees-table.ts b/ts_web/elements/dees-table.ts index 0f8a2b1..69b8d76 100644 --- a/ts_web/elements/dees-table.ts +++ b/ts_web/elements/dees-table.ts @@ -57,10 +57,12 @@ export interface ITableAction { * @param itemArg * @returns */ - actionFunc: (optionsArg: { - item: T, - dataArray: T[], - }) => Promise; + actionFunc: (actionDataArg: ITableActionDataArg) => Promise; +} + +export interface ITableActionDataArg { + item: T, + dataArray: T[], } export type TDisplayFunction = (itemArg: T) => object;