MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare const apiName = "internal.schema.open";
/**
 * 内部页面跳转 请求参数定义
 * @apiName internal.schema.open
 */
export interface IInternalSchemaOpenParams {
    [key: string]: any;
}
/**
 * 内部页面跳转 返回结果定义
 * @apiName internal.schema.open
 */
export interface IInternalSchemaOpenResult {
    [key: string]: any;
}
/**
 * 内部页面跳转
 * @apiName internal.schema.open
 * @supportVersion  ios: 2.8.0 android: 2.8.0
 */
export declare function open$(params: IInternalSchemaOpenParams): Promise<IInternalSchemaOpenResult>;
export default open$;