7 lines
109 B
TypeScript
Executable File
7 lines
109 B
TypeScript
Executable File
export type HttpSslAuthCredentials = {
|
|
ca?: string;
|
|
cert?: string;
|
|
key?: string;
|
|
passphrase?: string;
|
|
};
|