fix typo in function name, cleanup unused args (#317)

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-08-24 11:41:38 -07:00
committed by GitHub
parent a0730ded4e
commit d33ddb2f1b
4 changed files with 6 additions and 21 deletions

View File

@ -530,14 +530,12 @@ export class EngineCommandManager {
console.log('sending command', command)
this.engineConnection?.send(command)
}
sendModellingCommand({
sendModelingCommand({
id,
params,
range,
command,
}: {
id: string
params: any
range: SourceRange
command: EngineCommand
}): Promise<any> {