UNPKG

jsout

Version:

A Syslog-compatible, small, and simple logger for Typescript/Javascript projects. Sponsored by https://aeroview.io

6 lines (5 loc) 148 B
export interface Transport { stdout: (message: string) => void; stderr: (message: string) => void; } export declare const stdio: Transport;