UNPKG

@kestra-io/libs

Version:

Kestra is an infinitely scalable orchestration and scheduling platform, creating, running, scheduling, and monitoring millions of complex pipelines.

10 lines (8 loc) 234 B
interface Logger { trace: (...message: any) => void; debug: (...message: any) => void; info: (...message: any) => void; warn: (...message: any) => void; error: (...message: any) => void; } export type { Logger };