n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 515 B
text/typescript
/**
* Stripe - Source Resource
* Re-exports all operation types for this resource.
*/
import type { StripeV1SourceCreateNode } from './operation_create';
import type { StripeV1SourceDeleteNode } from './operation_delete';
import type { StripeV1SourceGetNode } from './operation_get';
export * from './operation_create';
export * from './operation_delete';
export * from './operation_get';
export type StripeV1SourceNode =
| StripeV1SourceCreateNode
| StripeV1SourceDeleteNode
| StripeV1SourceGetNode
;