From a140bb5ca55225f3131c7f903a3561f778b64224 Mon Sep 17 00:00:00 2001 From: Ethan Look Date: Mon, 27 Jan 2025 15:47:43 -0500 Subject: [PATCH] fixup: lint --- src/components/switch.ts | 2 +- src/components/switch/client.ts | 8 ++++++-- src/components/switch/switch.ts | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/switch.ts b/src/components/switch.ts index a5ded6021..09165c1fe 100644 --- a/src/components/switch.ts +++ b/src/components/switch.ts @@ -1,2 +1,2 @@ export type { Switch } from './switch/switch'; -export { SwitchClient } from './switch/client'; \ No newline at end of file +export { SwitchClient } from './switch/client'; diff --git a/src/components/switch/client.ts b/src/components/switch/client.ts index 729adfd28..76651160e 100644 --- a/src/components/switch/client.ts +++ b/src/components/switch/client.ts @@ -28,7 +28,11 @@ export class SwitchClient implements Switch { this.options = options; } - async setPosition(position: number, extra = {}, callOptions = this.callOptions) { + async setPosition( + position: number, + extra = {}, + callOptions = this.callOptions + ) { const request = new SetPositionRequest({ name: this.name, position, @@ -76,4 +80,4 @@ export class SwitchClient implements Switch { callOptions ); } -} \ No newline at end of file +} diff --git a/src/components/switch/switch.ts b/src/components/switch/switch.ts index 9abae240c..c900823a4 100644 --- a/src/components/switch/switch.ts +++ b/src/components/switch/switch.ts @@ -11,4 +11,4 @@ export interface Switch extends Resource { /** Get the total number of positions available on the switch. */ getNumberOfPositions: (extra?: Struct) => Promise; -} \ No newline at end of file +}