@visulima/inspector
Version:
Inspect utility for Node.js and Browsers.
5 lines (4 loc) • 384 B
text/typescript
import type { InspectType, InternalInspect, Options } from "./types.d.cts";
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;