UNPKG

verimor-api-sdk

Version:
12 lines (11 loc) 198 B
/** * Interface for proxy configuration. */ export interface ProxyConfig { host: string; port: number; auth?: { username: string; password: string; }; }