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

24 lines
589 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName getImageInfo
*/
export interface IUnionGetImageInfoParams extends ICommonAPIParams {
src: string;
}
/**
*
* @apiName getImageInfo
*/
export interface IUnionGetImageInfoResult {
path: string;
width: number;
height: number;
}
/**
*
* @apiName getImageInfo
*/
export declare function getImageInfo$(params: IUnionGetImageInfoParams): Promise<IUnionGetImageInfoResult>;
export default getImageInfo$;