markmv
Version:
TypeScript CLI for markdown file operations with intelligent link refactoring
13 lines • 590 B
TypeScript
/**
* Native Node.js REST API server for markmv
*
* Provides a lightweight HTTP API using only Node.js built-in modules. Uses auto-generated route
* definitions from JSON Schema-first approach. Exposes markmv functionality via RESTful endpoints
* for language-agnostic access.
*/
import * as http from 'node:http';
/** Create and start the HTTP server */
export declare function createApiServer(port?: number): http.Server;
/** Start the API server with environment-based configuration */
export declare function startApiServer(): http.Server;
//# sourceMappingURL=api-server.d.ts.map