UNPKG

@kubricate/core

Version:

A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.

10 lines 326 B
export type LogLevel = 'silent' | 'error' | 'warn' | 'info' | 'debug'; export interface BaseLogger { level: LogLevel; log(message: string): void; info(message: string): void; warn(message: string): void; error(message: string): void; debug(message: string): void; } //# sourceMappingURL=logger.d.ts.map