EdgeAIG's picture
download
raw
384 Bytes
/**
* A JSON value can be a string, number, boolean, object, array, or null.
* JSON values can be serialized and deserialized by the JSON.stringify and JSON.parse methods.
*/
export type JSONValue =
| null
| string
| number
| boolean
| JSONObject
| JSONArray;
export type JSONObject = {
[key: string]: JSONValue | undefined;
};
export type JSONArray = JSONValue[];

Xet Storage Details

Size:
384 Bytes
·
Xet hash:
952dcad94f80f4e28d922ee960693b4cf91aa7bfc244ca1b999eca22e35fafa7

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.