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.

11 lines 361 B
export type I18nStaticCatalogType = Record<string, Record<string, unknown>>; export interface LoadStaticCatalogInput { localesDir: string; supportedLocales: string[]; } export interface MergeStaticCatalogsInput { base: I18nStaticCatalogType; additions: I18nStaticCatalogType[]; overrideBuiltIn: boolean; } //# sourceMappingURL=types.d.ts.map