📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: 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;
Save