- export interface ExclusiveInvokeParams {
- api: string;
- appId: string;
- params: {
- [key: string]: any;
- };
- }
- declare function exclusiveInvoke<T>(args: ExclusiveInvokeParams): Promise<T>;
- declare namespace exclusiveInvoke {
- var version: {
- ios: string;
- android: string;
- };
- }
- export default exclusiveInvoke;
|