zhizhi/node_modules/dingtalk-jsapi/api/runtime/monitor/getLoadTime.d.ts

31 lines
975 B
TypeScript
Raw Normal View History

/**
* H5容器启动时间
* @apiName runtime.monitor.getLoadTime
*/
export interface IRuntimeMonitorGetLoadTimeParams {
/**
* RuntimeLaunchTime
* PageLoadTimeinit到第一个页面加载成功
* RuntimeStartLoadTime webview web
*/
type: string;
}
/**
* H5容器启动时间
* @apiName runtime.monitor.getLoadTime
*/
export interface IRuntimeMonitorGetLoadTimeResult {
/** 所查询对应的时间 */
time: number;
/** 同入参 */
type: string;
}
/**
* H5容器启动时间
* @apiName runtime.monitor.getLoadTime
* @supportVersion ios: 6.0.10 android: 6.0.10
* @author Android iOS
*/
export declare function getLoadTime$(params: IRuntimeMonitorGetLoadTimeParams): Promise<IRuntimeMonitorGetLoadTimeResult>;
export default getLoadTime$;