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

22 lines
585 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName rotateScreenView
*/
export interface IUnionRotateScreenViewParams extends ICommonAPIParams {
clockwise: boolean;
showStatusBar: boolean;
}
/**
*
* @apiName rotateScreenView
*/
export interface IUnionRotateScreenViewResult {
}
/**
*
* @apiName rotateScreenView
*/
export declare function rotateScreenView$(params: IUnionRotateScreenViewParams): Promise<IUnionRotateScreenViewResult>;
export default rotateScreenView$;