unenv
Version:
`unenv` is a framework-agnostic system that allows converting JavaScript code to be platform agnostic and work in any environment including Browsers, Workers, Node.js, or JavaScript runtime.
10 lines (9 loc) • 448 B
TypeScript
import type nodeHttps from "node:https";
export declare const Server: typeof nodeHttps.Server;
export declare const Agent: typeof nodeHttps.Agent;
export declare const globalAgent: typeof nodeHttps.globalAgent;
export declare const get: typeof nodeHttps.get;
export declare const createServer: typeof nodeHttps.createServer;
export declare const request: typeof nodeHttps.request;
declare const _default: typeof nodeHttps;
export default _default;