export interface HChooseVideoOption { /** * album 从相册选视频,camera 使用相机拍摄,默认为:['album', 'camera'] */ sourceType?: string | any[]; /** * 是否压缩所选的视频源文件,默认值为true,需要压缩 */ compressed?: boolean; /** * 拍摄视频最长拍摄时间,单位秒。最长支持 60 秒 */ maxDuration?: number; /** * 摄像切换 * - front: 前置摄像头 * - back: 后置摄像头 */ camera?: 'front' | 'back'; }