n8n-nodes-base
Version:
Base nodes of n8n
42 lines (39 loc) • 1.43 kB
text/typescript
/**
* MISP Node - Version 1
* Re-exports all discriminator combinations.
*/
import type { MispV1AttributeNode } from './resource_attribute';
import type { MispV1EventNode } from './resource_event';
import type { MispV1EventTagNode } from './resource_event_tag';
import type { MispV1FeedNode } from './resource_feed';
import type { MispV1GalaxyNode } from './resource_galaxy';
import type { MispV1NoticelistNode } from './resource_noticelist';
import type { MispV1ObjectNode } from './resource_object';
import type { MispV1OrganisationNode } from './resource_organisation';
import type { MispV1TagNode } from './resource_tag';
import type { MispV1UserNode } from './resource_user';
import type { MispV1WarninglistNode } from './resource_warninglist';
export * from './resource_attribute';
export * from './resource_event';
export * from './resource_event_tag';
export * from './resource_feed';
export * from './resource_galaxy';
export * from './resource_noticelist';
export * from './resource_object';
export * from './resource_organisation';
export * from './resource_tag';
export * from './resource_user';
export * from './resource_warninglist';
export type MispV1Node =
| MispV1AttributeNode
| MispV1EventNode
| MispV1EventTagNode
| MispV1FeedNode
| MispV1GalaxyNode
| MispV1NoticelistNode
| MispV1ObjectNode
| MispV1OrganisationNode
| MispV1TagNode
| MispV1UserNode
| MispV1WarninglistNode
;