UNPKG

ts-std-lib

Version:
9 lines (7 loc) 189 B
import { InspectOptions } from 'util'; /** * For inspecting objects during debugging */ export interface IInspector<T> { inspect(object: T, options?: InspectOptions): string; }