n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 400 B
text/typescript
/**
* Bannerbear - Image Resource
* Re-exports all operation types for this resource.
*/
import type { BannerbearV1ImageCreateNode } from './operation_create';
import type { BannerbearV1ImageGetNode } from './operation_get';
export * from './operation_create';
export * from './operation_get';
export type BannerbearV1ImageNode =
| BannerbearV1ImageCreateNode
| BannerbearV1ImageGetNode
;