UNPKG

ts-std-lib

Version:
10 lines (9 loc) 261 B
/// <reference types="node" /> import { InspectOptions } from 'util'; export declare const inspect: unique symbol; /** * Implement a custom inspect method */ export interface IInspectable { [inspect](options?: InspectOptions): string | object; }