Files
2025-09-08 04:48:28 +08:00

7 lines
109 B
TypeScript
Executable File

export type HttpSslAuthCredentials = {
ca?: string;
cert?: string;
key?: string;
passphrase?: string;
};