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.

14 lines 407 B
import { ServiceType } from './types'; import type { ConfigService } from './types'; export type { ConfigService }; export declare class Service { private readonly config; private readonly platforms; constructor(config: ConfigService); private validateConfig; start(options?: { port?: number; }): Promise<void>; } export { ServiceType }; //# sourceMappingURL=service.d.ts.map