/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface Camera { /** * 前置或后置,值为 front、back */ "device-position"?: "front" | "back"; /** * 闪光灯,值为 auto、on、off、torch */ flash?: "auto" | "on" | "off" | "torch"; /** * 摄像头在非正常终止时触发,如退出后台等情况 */ bindStop?: () => void; /** * 用户不允许使用摄像头时触发 */ bindError?: () => void; }