@nonstrict/recordkit 0.71.3 → 0.72.1-appstore
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/README.md +1 -1
- package/bin/recordkit-rpc +0 -0
- package/out/Recorder.d.ts +3 -3
- package/package.json +1 -1
- package/src/Recorder.ts +3 -3
package/bin/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# recordkit-rpc 0.
|
|
1
|
+
# recordkit-rpc 0.72.1-appstore
|
package/bin/recordkit-rpc
CHANGED
|
Binary file
|
package/out/Recorder.d.ts
CHANGED
|
@@ -152,7 +152,7 @@ export type SystemAudioSchema = {
|
|
|
152
152
|
excludeOptions?: ('currentProcess')[];
|
|
153
153
|
excludedProcessIDs?: number[];
|
|
154
154
|
output: 'stream';
|
|
155
|
-
/** Called with real-time audio buffer data compatible with Web Audio API.
|
|
155
|
+
/** Called with real-time audio buffer data compatible with Web Audio API. */
|
|
156
156
|
streamCallback?: (audioBuffer: AudioStreamBuffer) => void;
|
|
157
157
|
} | {
|
|
158
158
|
type: 'systemAudio';
|
|
@@ -175,7 +175,7 @@ export type SystemAudioSchema = {
|
|
|
175
175
|
backend?: SystemAudioBackend;
|
|
176
176
|
includedApplicationIDs?: number[];
|
|
177
177
|
output: 'stream';
|
|
178
|
-
/** Called with real-time audio buffer data compatible with Web Audio API.
|
|
178
|
+
/** Called with real-time audio buffer data compatible with Web Audio API. */
|
|
179
179
|
streamCallback?: (audioBuffer: AudioStreamBuffer) => void;
|
|
180
180
|
};
|
|
181
181
|
/**
|
|
@@ -201,7 +201,7 @@ export type ApplicationAudioSchema = {
|
|
|
201
201
|
applicationID: number;
|
|
202
202
|
backend?: SystemAudioBackend;
|
|
203
203
|
output: 'stream';
|
|
204
|
-
/** Called with real-time audio buffer data compatible with Web Audio API.
|
|
204
|
+
/** Called with real-time audio buffer data compatible with Web Audio API. */
|
|
205
205
|
streamCallback?: (audioBuffer: AudioStreamBuffer) => void;
|
|
206
206
|
};
|
|
207
207
|
/**
|
package/package.json
CHANGED
package/src/Recorder.ts
CHANGED
|
@@ -369,7 +369,7 @@ export type SystemAudioSchema = {
|
|
|
369
369
|
excludeOptions?: ('currentProcess')[]
|
|
370
370
|
excludedProcessIDs?: number[] // Int32
|
|
371
371
|
output: 'stream'
|
|
372
|
-
/** Called with real-time audio buffer data compatible with Web Audio API.
|
|
372
|
+
/** Called with real-time audio buffer data compatible with Web Audio API. */
|
|
373
373
|
streamCallback?: (audioBuffer: AudioStreamBuffer) => void
|
|
374
374
|
} | {
|
|
375
375
|
type: 'systemAudio'
|
|
@@ -392,7 +392,7 @@ export type SystemAudioSchema = {
|
|
|
392
392
|
backend?: SystemAudioBackend
|
|
393
393
|
includedApplicationIDs?: number[] // Int32
|
|
394
394
|
output: 'stream'
|
|
395
|
-
/** Called with real-time audio buffer data compatible with Web Audio API.
|
|
395
|
+
/** Called with real-time audio buffer data compatible with Web Audio API. */
|
|
396
396
|
streamCallback?: (audioBuffer: AudioStreamBuffer) => void
|
|
397
397
|
}
|
|
398
398
|
|
|
@@ -419,7 +419,7 @@ export type ApplicationAudioSchema = {
|
|
|
419
419
|
applicationID: number // Int32
|
|
420
420
|
backend?: SystemAudioBackend
|
|
421
421
|
output: 'stream'
|
|
422
|
-
/** Called with real-time audio buffer data compatible with Web Audio API.
|
|
422
|
+
/** Called with real-time audio buffer data compatible with Web Audio API. */
|
|
423
423
|
streamCallback?: (audioBuffer: AudioStreamBuffer) => void
|
|
424
424
|
}
|
|
425
425
|
|