UNPKG

@solidso/inspection

Version:

Dev mode, frontend logging library for solid.js

11 lines (9 loc) 308 B
export type SolidInspectionInput = { msg: string; [prop: string]: string | number | boolean | Error; } | string | Error; type log = (msg: SolidInspectionInput) => void; export declare const info: log; export declare const debug: log; export declare const warn: log; export declare const error: log;