UNPKG

@playbooks/utils

Version:

A collection of utilities used for Playbooks.

10 lines (9 loc) 378 B
declare class logger { static log: (title: any, ...data: any[]) => void; static error: (title: any, ...data: any[]) => void; static warn: (title: any, ...data: any[]) => void; static info: (title: any, ...data: any[]) => void; static success: (title: any, ...data: any[]) => void; static debug: (title: any, ...data: any[]) => void; } export { logger };