Installation
npm install --save @types/object-inspect
Summary
This package contains type definitions for object-inspect (https://github.com/substack/object-inspect).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-inspect.
declare namespace objectInspect {
interface Options {
depth?: number | undefined;
quoteStyle?: "single" | "double" | undefined;
maxStringLength?: number | null | undefined;
customInspect?: boolean | undefined;
indent?: number | "\t" | null | undefined;
}
}
declare function objectInspect(obj: any, opts?: objectInspect.Options): string;
export = objectInspect;
Additional Details
- Last updated: Tue, 07 Nov 2023 09:09:39 GMT
- Dependencies: none
Credits
These definitions were written by Charles Samborski, Akuukis, and Jordan Harband.