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

22 lines
536 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
* id
* @apiName getDeviceId
*/
export interface IUnionGetDeviceIdParams extends ICommonAPIParams {
}
/**
* id
* @apiName getDeviceId
*/
export interface IUnionGetDeviceIdResult {
oaid: string;
android_id: string;
}
/**
* id
* @apiName getDeviceId
*/
export declare function getDeviceId$(params: IUnionGetDeviceIdParams): Promise<IUnionGetDeviceIdResult>;
export default getDeviceId$;