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

22 lines
578 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName openDocument
*/
export interface IUnionOpenDocumentParams extends ICommonAPIParams {
filePath: string;
fileType?: string;
}
/**
*
* @apiName openDocument
*/
export interface IUnionOpenDocumentResult {
}
/**
*
* @apiName openDocument
*/
export declare function openDocument$(params: IUnionOpenDocumentParams): Promise<IUnionOpenDocumentResult>;
export default openDocument$;