UNPKG

@visulima/inspector

Version:

Inspect utility for Node.js and Browsers.

5 lines (4 loc) 363 B
import type { InternalInspect, Options } from "../types.d.mts"; type InspectItem = (value: any, object: any, options: Options, inspect: InternalInspect) => string; declare const inspectList: (list: ArrayLike<unknown>, from: unknown, options: Options, inspect: InternalInspect, inspectItem?: InspectItem, separator?: string) => string; export default inspectList;