mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
declare module 'proxy-agent' {
|
|
import { Agent } from 'http';
|
|
|
|
export default class ProxyAgent extends Agent {
|
|
constructor(url: string);
|
|
}
|
|
}
|