n8n-nodes-base
Version:
Base nodes of n8n
21 lines (18 loc) • 672 B
text/typescript
/**
* TheHive - Log Resource
* Re-exports all operation types for this resource.
*/
import type { TheHiveV1LogCreateNode } from './operation_create';
import type { TheHiveV1LogExecuteResponderNode } from './operation_execute_responder';
import type { TheHiveV1LogGetNode } from './operation_get';
import type { TheHiveV1LogGetAllNode } from './operation_get_all';
export * from './operation_create';
export * from './operation_execute_responder';
export * from './operation_get';
export * from './operation_get_all';
export type TheHiveV1LogNode =
| TheHiveV1LogCreateNode
| TheHiveV1LogExecuteResponderNode
| TheHiveV1LogGetNode
| TheHiveV1LogGetAllNode
;