UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

15 lines (12 loc) 456 B
/** * MiniMax - Video Resource * Re-exports all operation types for this resource. */ import type { LcMinimaxV1VideoImageToVideoNode } from './operation_image_to_video'; import type { LcMinimaxV1VideoTextToVideoNode } from './operation_text_to_video'; export * from './operation_image_to_video'; export * from './operation_text_to_video'; export type LcMinimaxV1VideoNode = | LcMinimaxV1VideoImageToVideoNode | LcMinimaxV1VideoTextToVideoNode ;