dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
20 lines (19 loc) • 542 B
TypeScript
import { ICommonAPIParams } from '../../constant/types';
/**
* 重置旋转屏幕 请求参数定义
* @apiName resetScreenView
*/
export interface IUnionResetScreenViewParams extends ICommonAPIParams {
}
/**
* 重置旋转屏幕 返回结果定义
* @apiName resetScreenView
*/
export interface IUnionResetScreenViewResult {
}
/**
* 重置旋转屏幕
* @apiName resetScreenView
*/
export declare function resetScreenView$(params: IUnionResetScreenViewParams): Promise<IUnionResetScreenViewResult>;
export default resetScreenView$;