coolink
Version:
Coocaa Coolink APP JavaScript library
13 lines (12 loc) • 604 B
TypeScript
import { BridgeParams } from '../types/type';
export default class BridgeManager {
static persistentCallbackId: string[];
static invoke(params: BridgeParams): Promise<any>;
static invokeWithPersistentCallBack(params: BridgeParams, methodId: string, callback: Function): void;
private static request;
static response(methodId: string, response: any): void;
static deletePersistentCallBack(name: string): void;
static networkModuleNames: string[];
static isNetworkRequest(params: BridgeParams): boolean;
static isLogRequest(params: BridgeParams): boolean;
}