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

23 lines
563 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName watchShake
*/
export interface IUnionWatchShakeParams extends ICommonAPIParams {
frequency: number;
sensitivity: number;
callbackDelay: number;
}
/**
*
* @apiName watchShake
*/
export interface IUnionWatchShakeResult {
}
/**
*
* @apiName watchShake
*/
export declare function watchShake$(params: IUnionWatchShakeParams): Promise<IUnionWatchShakeResult>;
export default watchShake$;