short-video-maker
Version:
Creates short videos for TikTok, Instagram Reels, and YouTube Shorts using the Model Context Protocol (MCP) and a REST API.
12 lines (11 loc) • 345 B
TypeScript
import http from "http";
import express from "express";
import { ShortCreator } from "../short-creator/ShortCreator";
import { Config } from "../config";
export declare class Server {
private app;
private config;
constructor(config: Config, shortCreator: ShortCreator);
start(): http.Server;
getApp(): express.Application;
}