8 lines
271 B
TypeScript
8 lines
271 B
TypeScript
|
|
import type { ProxyAgentConfigurationInputType } from '../types';
|
||
|
|
declare const _default: (configurationInput?: ProxyAgentConfigurationInputType) => {
|
||
|
|
HTTP_PROXY: string | null;
|
||
|
|
HTTPS_PROXY: string | null;
|
||
|
|
NO_PROXY: string | null;
|
||
|
|
};
|
||
|
|
export default _default;
|