dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
23 lines (22 loc) • 618 B
TypeScript
export declare const apiName = "internal.certify.takePhoto";
/**
* 拍照 请求参数定义
* @apiName internal.certify.takePhoto
*/
export interface IInternalCertifyTakePhotoParams {
[key: string]: any;
}
/**
* 拍照 返回结果定义
* @apiName internal.certify.takePhoto
*/
export interface IInternalCertifyTakePhotoResult {
[key: string]: any;
}
/**
* 拍照
* @apiName internal.certify.takePhoto
* @supportVersion ios: 2.12.0 android: 2.12.0
*/
export declare function takePhoto$(params: IInternalCertifyTakePhotoParams): Promise<IInternalCertifyTakePhotoResult>;
export default takePhoto$;