feat: init

This commit is contained in:
2026-02-13 22:02:30 +01:00
commit 8f9ff830fb
16711 changed files with 3307340 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import type nodeTls from "node:tls";
import { Server as _Server } from "node:net";
export declare class Server extends _Server implements nodeTls.Server {
constructor(arg1?: nodeTls.TlsOptions | ((socket: nodeTls.TLSSocket) => void), arg2?: (socket: nodeTls.TLSSocket) => void);
addContext(hostname: string, context: nodeTls.SecureContextOptions);
setSecureContext(options: nodeTls.SecureContextOptions);
setTicketKeys(_keys: Buffer);
getTicketKeys(): Buffer;
}