UNPKG

short-video-maker

Version:

Creates short videos for TikTok, Instagram Reels, and YouTube Shorts using the Model Context Protocol (MCP) and a REST API.

7 lines (6 loc) 242 B
import { CreateShortInput } from "../types/shorts"; export interface ValidationErrorResult { message: string; missingFields: Record<string, string>; } export declare function validateCreateShortInput(input: object): CreateShortInput;