File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
export type { Switch } from './switch/switch' ;
2
- export { SwitchClient } from './switch/client' ;
2
+ export { SwitchClient } from './switch/client' ;
Original file line number Diff line number Diff line change @@ -28,7 +28,11 @@ export class SwitchClient implements Switch {
28
28
this . options = options ;
29
29
}
30
30
31
- async setPosition ( position : number , extra = { } , callOptions = this . callOptions ) {
31
+ async setPosition (
32
+ position : number ,
33
+ extra = { } ,
34
+ callOptions = this . callOptions
35
+ ) {
32
36
const request = new SetPositionRequest ( {
33
37
name : this . name ,
34
38
position,
@@ -76,4 +80,4 @@ export class SwitchClient implements Switch {
76
80
callOptions
77
81
) ;
78
82
}
79
- }
83
+ }
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ export interface Switch extends Resource {
11
11
12
12
/** Get the total number of positions available on the switch. */
13
13
getNumberOfPositions : ( extra ?: Struct ) => Promise < number > ;
14
- }
14
+ }
You can’t perform that action at this time.
0 commit comments