forked from karaggeorge/macos-audio-devices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
433 lines (339 loc) · 8.46 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
export type TransportType = 'avb'
| 'aggregate'
| 'airplay'
| 'autoaggregate'
| 'bluetooth'
| 'bluetoothle'
| 'builtin'
| 'displayport'
| 'firewire'
| 'hdmi'
| 'pci'
| 'thunderbolt'
| 'usb'
| 'virtual'
| 'unknown'
export interface Device {
/*
The unique ID of the device.
*/
id: number;
/**
The human readable name of the device.
*/
name: string;
/**
The UID of the device for the [`AVCaptureDevice`](https://developer.apple.com/documentation/avfoundation/avcapturedevice) API.
*/
uid: string;
/**
Whether the device is an output device.
*/
isOutput: boolean;
/**
Whether the device is an input device.
*/
isInput: boolean;
/**
A number between 0 and 1 representing the volume setting of the device.
Only applicable on output devices that support it. It will be undefined otherwise.
*/
volume?: number;
/**
The [transport type](https://developer.apple.com/documentation/avfoundation/avcapturedevice/1387804-transporttype) of the device.
*/
transportType: TransportType
}
export const getAllDevices: {
/**
Get all the audio devices.
@returns A promise that resolves with an array of devices.
@example
```
const devices = await getAllDevices();
```
*/
(): Promise<Device[]>;
/**
Get all the audio devices.
@returns An array of devices.
@example
```
const devices = getAllDevices.sync();
```
*/
sync: () => Device[];
};
export const getDevice: {
/**
Get an audio device by ID.
@returns A promise that resolves with the device.
@example
```
const device = await getDevice(73);
```
*/
(): Promise<Device>;
/**
Get an audio device by ID.
@returns The device.
@example
```
const device = getDevice.sync(73);
```
*/
sync: () => Device;
};
export const getOutputDevices: {
/**
Get all the output devices.
@returns A promise that resolves with an array of output devices.
@example
```
const devices = await getOutputDevices();
```
*/
(): Promise<Device[]>;
/**
Get all the output devices.
@returns An array of output devices.
@example
```
const devices = getOutputDevices.sync();
```
*/
sync: () => Device[];
};
export const getInputDevices: {
/**
Get all the input devices.
@returns A promise that resolves with an array of input devices.
@example
```
const devices = await getInputDevices();
```
*/
(): Promise<Device[]>;
/**
Get all the input devices.
@returns An array of input devices.
@example
```
const devices = getInputDevices.sync();
```
*/
sync: () => Device[];
};
export const getDefaultOutputDevice: {
/**
Get the default output device.
@returns A promise that resolves with the default output device.
@example
```
const defaultOutputDevice = await getDefaultOutputDevice();
```
*/
(): Promise<Device>;
/**
Get the default output device.
@returns The default output device.
@example
```
const defaultOutputDevice = getDefaultOutputDevice.sync();
```
*/
sync: () => Device;
};
export const getDefaultInputDevice: {
/**
Get the default input device.
@returns A promise that resolves with the default input device.
@example
```
const defaultInputDevice = await getDefaultInputDevice();
```
*/
(): Promise<Device>;
/**
Get the default input device.
@returns The default input device.
@example
```
const defaultInputDevice = getDefaultInputDevice.sync();
```
*/
sync: () => Device;
};
export const getDefaultSystemDevice: {
/**
Get the default system sound effects device.
@returns A promise that resolves with the default system device.
@example
```
const defaultSystemDevice = await getDefaultSystemDevice();
```
*/
(): Promise<Device>;
/**
Get the default system sound effects device.
@returns The default system device.
@example
```
const defaultSystemDevice = getDefaultSystemDevice.sync();
```
*/
sync: () => Device;
}
export const setDefaultOutputDevice: {
/**
Set the default output device.
@param deviceId - The ID of the output device to set as the default.
@example
```
await setDefaultOutputDevice(74);
```
*/
(deviceId: number): Promise<void>;
/**
Set the default output device.
@param deviceId - The ID of the output device to set as the default.
@example
```
setDefaultOutputDevice.sync(74);
```
*/
sync: (deviceId: number) => void;
};
export const setDefaultInputDevice: {
/**
Set the default input device.
@param deviceId - The ID of the input device to set as the default.
@example
```
await setDefaultInputDevice(74);
```
*/
(deviceId: number): Promise<void>;
/**
Set the default input device.
@param deviceId - The ID of the input device to set as the default.
@example
```
setDefaultInputDevice.sync(74);
```
*/
sync: (deviceId: number) => void;
};
export const setDefaultSystemDevice: {
/**
Set the default system sound effects device (only output devices).
@param deviceId - The ID of the output device to set as the default for system sounds.
@example
```
await setDefaultSystemDevice(74);
```
*/
(deviceId: number): Promise<void>;
/**
Set the default system sound effects device (only output devices).
@param deviceId - The ID of the output device to set as the default for system sounds.
@example
```
setDefaultSystemDevice.sync(74);
```
*/
sync: (deviceId: number) => void;
};
export const getOutputDeviceVolume: {
/**
Get the volume of an output device that supports it.
@param deviceId - The ID of the output device.
@returns A promise that resolves with the volume of the device.
@example
```
const volume = await getOutputDeviceVolume(74);
```
*/
(deviceId: number): Promise<number>;
/**
Get the volume of an output device that supports it.
@param deviceId - The ID of the output device.
@returns The volume of the device.
@example
```
const volume = getOutputDeviceVolume.sync(74);
```
*/
sync: (deviceId: number) => number;
};
export const setOutputDeviceVolume: {
/**
Set the volume of an output device that supports it.
@param deviceId - The ID of the output device.
@param voluem - The volume level between 0 and 1.
@example
```
await setOutputDeviceVolume(74, 0.5);
```
*/
(deviceId: number, volume: number): Promise<void>;
/**
Set the volume of an output device that supports it.
@param deviceId - The ID of the output device.
@param voluem - The volume level between 0 and 1.
@example
```
setOutputDeviceVolume.sync(74, 0.5);
```
*/
sync: (deviceId: number, volume: number) => void;
};
export const createAggregateDevice: {
/**
Create an [aggregate device](https://support.apple.com/en-us/HT202000) from other existing devices.
Note that aggregate devices do not support volume, so make sure to update the volume on the devices used to create it instead.
@param name - The name of the aggregate device.
@param mainDeviceId - The ID of main device.
@param otherDeviceIds - Array of the rest of the device IDs to combine.
@param options.multiOutput - Wether to create the device as a “Multi-Output Device”.
@returns A promise that resolves with the newly created aggregate device.
@example
```
const aggregateDevice = await createAggregateDevice("My Aggregate Device", 74, [81, 86], {multiOutput: true});
```
*/
(name: string, mainDeviceId: number, otherDeviceIds: number[], options?: { multiOutput: boolean }): Promise<Device>;
/**
Create an aggregate device from other existing devices.
@param name - The name of the aggregate device.
@param mainDeviceId - The ID of main device.
@param otherDeviceIds - Array of the rest of the device IDs to combine.
@param options.multiOutput - Wether to create the device as a “Multi-Output Device”.
@returns The newly created aggregate device.
@example
```
const aggregateDevice = createAggregateDevice.sync("My Aggregate Device", 74, [81, 86], {multiOutput: true});
```
*/
sync: (name: string, mainDeviceId: number, otherDeviceIds: number[], options?: { multiOutput: boolean }) => Device;
};
export const destroyAggregateDevice: {
/**
Destroy an aggregate device.
@param deviceId - The ID of the output device.
@example
```
await destroyAggregateDevice(74);
```
*/
(deviceId: number): Promise<void>;
/**
Destroy an aggregate device.
@param deviceId - The ID of the output device.
@example
```
destroyAggregateDevice.sync(74);
```
*/
sync: (deviceId: number) => void;
};