mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
|
export type HttpSslAuthCredentials = {
|
||
|
ca?: string;
|
||
|
cert?: string;
|
||
|
key?: string;
|
||
|
passphrase?: string;
|
||
|
};
|