-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
64 lines (60 loc) · 1.56 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
export interface CordovaWebsocketRecvEventCallback {
( event: CordovaWebsocketEvent ) : void;
}
export interface CordovaWebsocketSuccessCallback {
( success: CordovaWebsocketSuccess ) : void;
}
export interface CordovaWebsocketErrorCallback {
( error: CordovaWebsocketError ) : void;
}
export interface CordovaWebsocketEvent extends CordovaWebsocketError {
callbackMethod: 'onMessage' | 'onClose' | 'onFail';
webSocketId: string;
message: string;
}
export interface CordovaWebsocketSuccess {
webSocketId: string;
code: number;
}
export interface CordovaWebsocketError extends CordovaWebsocketClose {
callbackMethod: 'onMessage' | 'onClose' | 'onFail';
webSocketId: string;
code: number;
reason: string;
exception?: string;
}
export interface CordovaWebsocketClose {
callbackMethod: 'onMessage' | 'onClose' | 'onFail';
webSocketId: string;
code: number;
reason: string;
}
export interface CordovaWebsocketOptions {
url: string;
timeout?: number;
pingInterval?: number;
headers?: {[key: string]: any};
acceptAllCerts?: boolean;
}
export interface CordovaWebsocketPlugin {
wsConnect(
options: CordovaWebsocketOptions,
receiveCallback?: CordovaWebsocketRecvEventCallback,
successCallback?: CordovaWebsocketSuccessCallback,
failureCallback?: CordovaWebsocketErrorCallback
): void;
wsSend(
webSocketId: string,
message: string
): void;
wsClose(
webSocketId: string,
code?: number,
reason?: string
): void;
}
declare global {
interface Window {
CordovaWebsocketPlugin: CordovaWebsocketPlugin;
}
}