Skip to content

Commit 40151ee

Browse files
committed
fix types after rebasing
1 parent 6eb91b3 commit 40151ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/devextreme/js/__internal/grids/grid_core/ai_assistant/grid_commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const EXECUTION_ABORT_MESSAGE = 'dxDataGrid-aiAssistantExecutionAbortMessage';
2121
export class GridCommands {
2222
private readonly component: InternalGrid;
2323

24-
private readonly commands: Map<string, GridCommand>;
24+
private readonly commands: Map<string, GridCommand<Record<string, unknown>>>;
2525

2626
private _executing = false;
2727

@@ -151,7 +151,7 @@ export class GridCommands {
151151
}
152152

153153
private async executeCommand(
154-
command: GridCommand,
154+
command: GridCommand<Record<string, unknown>>,
155155
args: Record<string, unknown>,
156156
callbacks: CommandCallbacks,
157157
): Promise<CommandResult> {

0 commit comments

Comments
 (0)