Created
January 25, 2019 23:55
-
-
Save srdjan/3578234b3b81548c3f084233effef8a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type JSValue = { kind: 'JSNull' } | |
| { kind: 'JSBool', value: boolean } | |
| { kind: 'JSString', value: string } | |
| { kind: 'JSRational', asFloat: boolean, value: number } | |
| { kind: 'JSArray', value: JSValue[] } | |
| { kind: 'JSObject', value: { [key: string]: JSValue } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment