From 3be751e41cdc9f32d0c9fd0e0a364e51a2a5cf12 Mon Sep 17 00:00:00 2001 From: panaaj <38519157+panaaj@users.noreply.github.com> Date: Mon, 25 Nov 2024 15:45:47 +1030 Subject: [PATCH] chore: format --- packages/server-api/src/autopilotapi.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/server-api/src/autopilotapi.ts b/packages/server-api/src/autopilotapi.ts index cf3823c40..de55908a1 100644 --- a/packages/server-api/src/autopilotapi.ts +++ b/packages/server-api/src/autopilotapi.ts @@ -48,7 +48,7 @@ export interface AutopilotApi { apUpdate( pluginId: string, deviceId: string, - apInfo: {[path:string]: Value} + apInfo: { [path: string]: Value } ): void } @@ -92,8 +92,5 @@ export interface AutopilotProviderRegistry { provider: AutopilotProvider, devices: string[] ): void - autopilotUpdate( - deviceId: string, - apInfo: {[path:string]: Value} - ): void + autopilotUpdate(deviceId: string, apInfo: { [path: string]: Value }): void }