/**
 * 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
  ;