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