n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 629 B
text/typescript
/**
* Microsoft Teams - ChatMessage Resource
* Re-exports all operation types for this resource.
*/
import type { MicrosoftTeamsV11ChatMessageCreateNode } from './operation_create';
import type { MicrosoftTeamsV11ChatMessageGetNode } from './operation_get';
import type { MicrosoftTeamsV11ChatMessageGetAllNode } from './operation_get_all';
export * from './operation_create';
export * from './operation_get';
export * from './operation_get_all';
export type MicrosoftTeamsV11ChatMessageNode =
| MicrosoftTeamsV11ChatMessageCreateNode
| MicrosoftTeamsV11ChatMessageGetNode
| MicrosoftTeamsV11ChatMessageGetAllNode
;