UNPKG

log-tags

Version:

Color tags for devtools console.log

6 lines (5 loc) 350 B
import { LogTagStyleObject } from "./types"; import { CombinedLogTags } from "./utils"; export type LogTag = [tag: string, style: string]; export declare function logTag(text: string, styleOrBg?: LogTagStyleObject | string): LogTag; export declare function logTags(...tags: [text: string, styleOrBg?: LogTagStyleObject | string][]): CombinedLogTags;