n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 408 B
text/typescript
/**
* Salesforce - Flow Resource
* Re-exports all operation types for this resource.
*/
import type { SalesforceV1FlowGetAllNode } from './operation_get_all';
import type { SalesforceV1FlowInvokeNode } from './operation_invoke';
export * from './operation_get_all';
export * from './operation_invoke';
export type SalesforceV1FlowNode =
| SalesforceV1FlowGetAllNode
| SalesforceV1FlowInvokeNode
;