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.

13 lines 472 B
import type { ConfigPlatforms } from './types'; import type { ApplicationEntryPoints } from '../layers/application/types'; export declare class Platforms { private readonly server?; private readonly cli?; private readonly desktop?; constructor(config: ConfigPlatforms); registerEntrypoints(entryPoints: ApplicationEntryPoints): Promise<void>; start(options?: { port?: number; }): Promise<void>; } //# sourceMappingURL=platforms.d.ts.map