n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 391 B
text/typescript
/**
* Sentry.io - Event Resource
* Re-exports all operation types for this resource.
*/
import type { SentryIoV1EventGetNode } from './operation_get';
import type { SentryIoV1EventGetAllNode } from './operation_get_all';
export * from './operation_get';
export * from './operation_get_all';
export type SentryIoV1EventNode =
| SentryIoV1EventGetNode
| SentryIoV1EventGetAllNode
;