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.

11 lines (10 loc) 330 B
import express from "express"; import { ShortCreator } from "../../short-creator/ShortCreator"; import { Config } from "../../config"; export declare class APIRouter { router: express.Router; private shortCreator; private config; constructor(config: Config, shortCreator: ShortCreator); private setupRoutes; }