n8n-nodes-base
Version:
Base nodes of n8n
30 lines (27 loc) • 1.05 kB
text/typescript
/**
* Currents - Run Resource
* Re-exports all operation types for this resource.
*/
import type { CurrentsV1RunCancelNode } from './operation_cancel';
import type { CurrentsV1RunCancelGithubNode } from './operation_cancel_github';
import type { CurrentsV1RunDeleteNode } from './operation_delete';
import type { CurrentsV1RunFindNode } from './operation_find';
import type { CurrentsV1RunGetNode } from './operation_get';
import type { CurrentsV1RunGetAllNode } from './operation_get_all';
import type { CurrentsV1RunResetNode } from './operation_reset';
export * from './operation_cancel';
export * from './operation_cancel_github';
export * from './operation_delete';
export * from './operation_find';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_reset';
export type CurrentsV1RunNode =
| CurrentsV1RunCancelNode
| CurrentsV1RunCancelGithubNode
| CurrentsV1RunDeleteNode
| CurrentsV1RunFindNode
| CurrentsV1RunGetNode
| CurrentsV1RunGetAllNode
| CurrentsV1RunResetNode
;