📁
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 concat-stream 2.0 // Project: https://github.com/maxogden/concat-stream // Definitions by: Joey Marianer <https://github.com/jmarianer> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> import { Writable } from "stream"; declare function concat(cb: (buf: Buffer) => void): Writable; declare function concat(opts: { encoding: "buffer" | undefined } | {}, cb: (buf: Buffer) => void): Writable; declare function concat(opts: { encoding: "string" }, cb: (buf: string) => void): Writable; declare function concat(opts: { encoding: "array" }, cb: (buf: Array<bigint>) => void): Writable; declare function concat(opts: { encoding: "uint8array" | "u8" | "uint8" }, cb: (buf: Uint8Array) => void): Writable; declare function concat(opts: { encoding: "object" }, cb: (buf: object[]) => void): Writable; export = concat;
Save