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 = "net.vpn.stop";
| /**
| * 关闭深信服vpn 请求参数定义
| * @apiName net.vpn.stop
| */
| export interface INetVpnStopParams {
| [key: string]: any;
| }
| /**
| * 关闭深信服vpn 返回结果定义
| * @apiName net.vpn.stop
| */
| export interface INetVpnStopResult {
| [key: string]: any;
| }
| /**
| * 关闭深信服vpn
| * @apiName net.vpn.stop
| * @supportVersion ios: 4.1 android: 4.1
| */
| export declare function stop$(params: INetVpnStopParams): Promise<INetVpnStopResult>;
| export default stop$;
|
|