UNPKG

@kubricate/core

Version:

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

11 lines (9 loc) 279 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; }