n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 504 B
text/typescript
/**
* Google Chat Node - Version 1
* Re-exports all discriminator combinations.
*/
import type { GoogleChatV1MemberNode } from './resource_member';
import type { GoogleChatV1MessageNode } from './resource_message';
import type { GoogleChatV1SpaceNode } from './resource_space';
export * from './resource_member';
export * from './resource_message';
export * from './resource_space';
export type GoogleChatV1Node =
| GoogleChatV1MemberNode
| GoogleChatV1MessageNode
| GoogleChatV1SpaceNode
;