UNPKG

@n8n/n8n-nodes-langchain

Version:
15 lines (12 loc) 461 B
/** * MiniMax - Video Resource * Re-exports all operation types for this resource. */ import type { LcMinimaxV11VideoImageToVideoNode } from './operation_image_to_video'; import type { LcMinimaxV11VideoTextToVideoNode } from './operation_text_to_video'; export * from './operation_image_to_video'; export * from './operation_text_to_video'; export type LcMinimaxV11VideoNode = | LcMinimaxV11VideoImageToVideoNode | LcMinimaxV11VideoTextToVideoNode ;