blob: 090eeacfb8f5f9b5653207e0d5a9f88f58eb5e90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package json
type NodeType string
const (
StringType NodeType = "string"
NumberType NodeType = "number"
ObjectType NodeType = "object"
ArrayType NodeType = "array"
BooleanType NodeType = "boolean"
NullType NodeType = "null"
)
|