UNPKG

bunyamin

Version:

Bunyan-based logger for Node.js supporting Trace Event format

8 lines (6 loc) 275 B
import './typings.d'; export type ThreadID = ExplicitThreadID | ThreadAlias; export type ExplicitThreadID = number; export type ThreadAlias = SimpleThreadAlias | ComplexThreadAlias; export type SimpleThreadAlias = string; export type ComplexThreadAlias = [string, unknown];