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.

4 lines 161 B
export type Optional<T> = T | undefined; export type Nullable<T> = T | null; export type Maybe<T> = T | null | undefined; //# sourceMappingURL=optionals.d.ts.map