n8n-nodes-base
Version:
Base nodes of n8n
21 lines (18 loc) • 650 B
text/typescript
/**
* Stripe - Charge Resource
* Re-exports all operation types for this resource.
*/
import type { StripeV1ChargeCreateNode } from './operation_create';
import type { StripeV1ChargeGetNode } from './operation_get';
import type { StripeV1ChargeGetAllNode } from './operation_get_all';
import type { StripeV1ChargeUpdateNode } from './operation_update';
export * from './operation_create';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_update';
export type StripeV1ChargeNode =
| StripeV1ChargeCreateNode
| StripeV1ChargeGetNode
| StripeV1ChargeGetAllNode
| StripeV1ChargeUpdateNode
;