소스 검색

Mime types in webcam options type (#3593)

preferredVideoMimeType and preferredVideoMimeType in WebcamOptions interface
Sobakin Sviatoslav 3 년 전
부모
커밋
d437a549c1
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/@uppy/webcam/types/index.d.ts

+ 2 - 0
packages/@uppy/webcam/types/index.d.ts

@@ -19,6 +19,8 @@ export interface WebcamOptions extends PluginOptions {
     title?: string
     videoConstraints?: MediaTrackConstraints
     showRecordingLength?: boolean
+    preferredImageMimeType?: string
+    preferredVideoMimeType?: string
 }
 
 declare class Webcam extends UIPlugin<WebcamOptions> {}