📁
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 through // Project: https://github.com/dominictarr/through // Definitions by: Andrew Gaspar <https://github.com/AndrewGaspar> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> import stream = require('stream'); declare function through( write?: (data: any) => void, end?: () => void, opts?: { autoDestroy: boolean; }, ): through.ThroughStream; declare namespace through { export interface ThroughStream extends stream.Transform { autoDestroy: boolean; queue: (chunk: any) => any; } } export = through;
Save