n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 499 B
text/typescript
/**
* PostBin - Bin Resource
* Re-exports all operation types for this resource.
*/
import type { PostBinV1BinCreateNode } from './operation_create';
import type { PostBinV1BinDeleteNode } from './operation_delete';
import type { PostBinV1BinGetNode } from './operation_get';
export * from './operation_create';
export * from './operation_delete';
export * from './operation_get';
export type PostBinV1BinNode =
| PostBinV1BinCreateNode
| PostBinV1BinDeleteNode
| PostBinV1BinGetNode
;