testProxy.d.ts 234 B

12345678910
  1. export interface TestProxyInfoResult {
  2. connect_status: boolean;
  3. }
  4. declare function testProxy(): Promise<TestProxyInfoResult>;
  5. declare namespace testProxy {
  6. var version: {
  7. pc: string;
  8. };
  9. }
  10. export default testProxy;