UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

18 lines (15 loc) 551 B
/** * Stripe - CustomerCard Resource * Re-exports all operation types for this resource. */ import type { StripeV1CustomerCardAddNode } from './operation_add'; import type { StripeV1CustomerCardGetNode } from './operation_get'; import type { StripeV1CustomerCardRemoveNode } from './operation_remove'; export * from './operation_add'; export * from './operation_get'; export * from './operation_remove'; export type StripeV1CustomerCardNode = | StripeV1CustomerCardAddNode | StripeV1CustomerCardGetNode | StripeV1CustomerCardRemoveNode ;