📁
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
/// <reference types="node"/> import {IncomingMessage} from 'http'; /** Decompress a HTTP response if needed. @param response - The HTTP incoming stream with compressed data. @returns The decompressed HTTP response stream. @example ``` import {http} from 'http'; import decompressResponse = require('decompress-response'); http.get('https://sindresorhus.com', response => { response = decompressResponse(response); }); ``` */ declare function decompressResponse(response: IncomingMessage): IncomingMessage; export = decompressResponse;
Save