/// import { InspectOptions } from 'util'; export declare const inspect: unique symbol; /** * Implement a custom inspect method */ export interface IInspectable { [inspect](options?: InspectOptions): string | object; }