We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903bcbf commit 763e88dCopy full SHA for 763e88d
types/scratch-vm.d.ts
@@ -94,7 +94,10 @@ declare namespace VM {
94
serializeAssets(): ScratchStorage.Asset[];
95
deserialize(json: unknown, zip?: JSZip, keepExisting?: boolean): Promise<void>;
96
}
97
- // https://github.com/microsoft/TypeScript/pull/33050#issue-484549713
+ /**
98
+ * Note that behavior of Infinity, -Infinity, and NaN is undefined.
99
+ * Implementation based on https://github.com/microsoft/TypeScript/pull/33050#issue-484549713
100
+ */
101
type JSONSerializable = string | number | boolean | null | JSONSerializable[] | { [key: string]: JSONSerializable };
102
/**
103
* Maps extension ID to arbitrary data storage.
0 commit comments