UNPKG

ts-std-lib

Version:
9 lines (8 loc) 222 B
/// <reference types="node" /> import { InspectOptions } from 'util'; /** * For inspecting objects during debugging */ export interface IInspector<T> { inspect(object: T, options?: InspectOptions): string; }