zhizhi/node_modules/dingtalk-jsapi/api/union/getDeviceUUID.d.ts

21 lines
518 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
* uuid
* @apiName getDeviceUUID
*/
export interface IUnionGetDeviceUUIDParams extends ICommonAPIParams {
}
/**
* uuid
* @apiName getDeviceUUID
*/
export interface IUnionGetDeviceUUIDResult {
uuid: string;
}
/**
* uuid
* @apiName getDeviceUUID
*/
export declare function getDeviceUUID$(params: IUnionGetDeviceUUIDParams): Promise<IUnionGetDeviceUUIDResult>;
export default getDeviceUUID$;