stopVPNApp.d.ts 308 B

12345678910111213
  1. export interface StopVPNAppParams {
  2. vpnAddress: string;
  3. authInfo: string;
  4. authType: string;
  5. }
  6. declare function stopVPNApp(params: StopVPNAppParams): Promise<void>;
  7. declare namespace stopVPNApp {
  8. var version: {
  9. android: string;
  10. ios: string;
  11. };
  12. }
  13. export default stopVPNApp;