blob: 090eeacfb8f5f9b5653207e0d5a9f88f58eb5e90 (
plain) (
tree)
|
|
package json
type NodeType string
const (
StringType NodeType = "string"
NumberType NodeType = "number"
ObjectType NodeType = "object"
ArrayType NodeType = "array"
BooleanType NodeType = "boolean"
NullType NodeType = "null"
)
|