⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
@types
/
object-inspect
/
Edit File: index.d.ts
// Type definitions for object-inspect 1.8 // Project: https://github.com/substack/object-inspect // Definitions by: Charles Samborski <https://github.com/demurgos> // Akuukis <https://github.com/Akuukis> // Jordan Harband <https://github.com/ljharb> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare namespace objectInspect { /** * Inspection options */ interface Options { /** * Maximum depth of the inspection. Default: `5`. */ depth?: number | undefined; /** * Must be "single" or "double", if present. */ quoteStyle?: 'single' | 'double' | undefined; /** * Must be 0, a positive integer, Infinity, or null, if present. Default Infinity. */ maxStringLength?: number | null | undefined; /** * When true, a custom inspect method function will be invoked. Default true. */ customInspect?: boolean | undefined; /** * Must be "\t", null, or a positive integer. Default null. */ indent?: number | '\t' | null | undefined; } } /** * Return a string `s` with the string representation of `obj` up to a depth of `opts.depth`. * * @param obj Object to inspect * @param opts Inspection options. Default: `{}`. * @return String representation of `obj` */ declare function objectInspect(obj: any, opts?: objectInspect.Options): string; export = objectInspect;
Simpan