@nxtedition/types 23.0.63 → 23.1.0

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.
@@ -223,6 +223,19 @@ export interface Settings {
223
223
  app?: string;
224
224
  args?: string[];
225
225
  } | string;
226
+ recorder?: {
227
+ microphone?: {
228
+ deviceId?: string;
229
+ inputGainDb?: number;
230
+ monitorInput?: boolean;
231
+ };
232
+ webcam?: {
233
+ deviceId?: string;
234
+ frameRate?: number;
235
+ aspectRatio?: number;
236
+ };
237
+ countdown?: number;
238
+ };
226
239
  };
227
240
  edit?: {
228
241
  thumbnailView?: "filmStrip" | "thumbnail" | "none";
@@ -238,6 +251,7 @@ export interface Settings {
238
251
  voiceOver?: {
239
252
  inputDevice?: string;
240
253
  inputGainDb?: number;
254
+ monitorInput?: boolean;
241
255
  backgroundReductionDb?: number;
242
256
  recordMode?: "instant" | "punchAndRoll";
243
257
  preRollDuration?: number;
@@ -3196,6 +3196,19 @@ declare interface Settings {
3196
3196
  app?: string;
3197
3197
  args?: string[];
3198
3198
  } | string;
3199
+ recorder?: {
3200
+ microphone?: {
3201
+ deviceId?: string;
3202
+ inputGainDb?: number;
3203
+ monitorInput?: boolean;
3204
+ };
3205
+ webcam?: {
3206
+ deviceId?: string;
3207
+ frameRate?: number;
3208
+ aspectRatio?: number;
3209
+ };
3210
+ countdown?: number;
3211
+ };
3199
3212
  };
3200
3213
  edit?: {
3201
3214
  thumbnailView?: "filmStrip" | "thumbnail" | "none";
@@ -3211,6 +3224,7 @@ declare interface Settings {
3211
3224
  voiceOver?: {
3212
3225
  inputDevice?: string;
3213
3226
  inputGainDb?: number;
3227
+ monitorInput?: boolean;
3214
3228
  backgroundReductionDb?: number;
3215
3229
  recordMode?: "instant" | "punchAndRoll";
3216
3230
  preRollDuration?: number;