- import { MODE_ENUM } from './getProxyInfo';
- export interface SetProxyInfoParams {
- id: number;
- mode: MODE_ENUM;
- addr: string;
- port: number;
- user?: string;
- password?: string;
- }
- declare function setProxyInfo(params: SetProxyInfoParams): Promise<{}>;
- declare namespace setProxyInfo {
- var version: {
- pc: string;
- };
- }
- export default setProxyInfo;
|