UNPKG

@sentzunhat/zacatl

Version:

A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.

10 lines 436 B
import type { Express } from 'express'; import type { PageServerPort, StaticConfig } from './port'; export declare class ExpressPageAdapter implements PageServerPort { private readonly server; constructor(server: Express); registerStaticFiles(config: StaticConfig): void; registerSpaFallback(apiPrefix: string, staticDir: string): void; register(): Promise<void>; } //# sourceMappingURL=express-page-adapter.d.ts.map