@vfarcic/dot-ai
Version:
AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance
22 lines • 785 B
TypeScript
/**
* REST API Route Definitions
*
* Central registration of all REST API routes with their Zod schemas.
* This is the single source of truth for routing, OpenAPI generation, and fixture validation.
*
* PRD #354: REST API Route Registry with Auto-Generated OpenAPI and Test Fixtures
*/
import { RestRouteRegistry, RouteDefinition } from '../rest-route-registry';
/**
* All route definitions for the REST API
*/
export declare const routeDefinitions: RouteDefinition<unknown, unknown, unknown, unknown>[];
/**
* Register all routes with the provided registry
*/
export declare function registerAllRoutes(registry: RestRouteRegistry): void;
/**
* Get route count - useful for validation
*/
export declare function getRouteCount(): number;
//# sourceMappingURL=index.d.ts.map