UNPKG

ts-std-lib

Version:
15 lines (14 loc) 406 B
/// <reference types="node" /> import { InspectOptions } from 'util'; import { IInspector } from './IInspector'; /** * An standard implementation for inspecting native objects during debugging */ export declare class DefaultInspector<T> implements IInspector<T> { /** * * @param object * @param options */ inspect(object: T, options?: InspectOptions): string; }