-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.d.ts
71 lines (64 loc) · 2.11 KB
/
index.d.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
64
65
66
67
68
69
70
71
/**
* Copyright (C) 2021 Nor Cod
*
* This file is part of react-native-simple-openvpn.
*
* react-native-simple-openvpn is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* react-native-simple-openvpn is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with react-native-simple-openvpn. If not, see <http://www.gnu.org/licenses/>.
*/
interface VpnOptions {
remoteAddress?: string;
ovpnString?: string;
ovpnFileName?: string;
username?: string;
password?: string;
assetsPath?: string;
notificationTitle?: string;
compatMode?: RNSimpleOpenvpn.CompatMode;
useLegacyProvider?: boolean;
useCustomConfig?: boolean;
customConfigOptions?: string;
allowedAppsVpn?: Array<string>;
allowedAppsVpnAreDisallowed?: boolean;
providerBundleIdentifier: string;
localizedDescription?: string;
}
interface VpnEventParams {
state: RNSimpleOpenvpn.VpnState;
message: string;
level?: string;
}
declare namespace RNSimpleOpenvpn {
function connect(options: VpnOptions): Promise<void>;
function disconnect(): Promise<void>;
function getCurrentState(): Promise<VpnState>;
function observeState(): Promise<void>;
function stopObserveState(): Promise<void>;
enum VpnState {
VPN_STATE_DISCONNECTED,
VPN_STATE_CONNECTING,
VPN_STATE_CONNECTED,
VPN_STATE_DISCONNECTING,
VPN_OTHER_STATE,
}
enum CompatMode {
MODERN_DEFAULTS,
OVPN_TWO_FIVE_PEER,
OVPN_TWO_FOUR_PEER,
OVPN_TWO_THREE_PEER,
}
}
declare const addVpnStateListener: (callback: (e: VpnEventParams) => void) => void;
declare const removeVpnStateListener: () => void;
export { addVpnStateListener, removeVpnStateListener, VpnOptions, VpnEventParams };
export default RNSimpleOpenvpn;