signal-desktop/ts/proxy-agent.d.ts
2020-11-04 13:03:13 -06:00

10 lines
233 B
TypeScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
declare module 'proxy-agent' {
import { Agent } from 'http';
export default class ProxyAgent extends Agent {
constructor(url: string);
}
}