@visulima/inspector
Version:
Inspect utility for Node.js and Browsers.
5 lines (4 loc) • 383 B
TypeScript
import type { InspectType, InternalInspect, Options } from "./types.d.ts";
export declare const inspectNode: (node: Node, inspect: InternalInspect, options: Options) => string;
export declare const inspectNodeCollection: InspectType<ArrayLike<Node>>;
export declare const inspectHTMLElement: (element: Element, object: unknown, options: Options, inspect: InternalInspect) => string;