mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-26 06:17:21 +02:00
7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
export type HttpSslAuthCredentials = {
|
|
ca?: string;
|
|
cert?: string;
|
|
key?: string;
|
|
passphrase?: string;
|
|
};
|