JsonFromString overview
Added in v0.5.14
Table of contents
- JsonArray (interface)
- JsonRecord (interface)
- Json (type alias)
- Json
- JsonArray
- JsonFromString
- JsonRecord
JsonArray (interface)
Signature
export interface JsonArray extends ReadonlyArray<Json> {}
Added in v0.5.14
JsonRecord (interface)
Signature
export interface JsonRecord {
readonly [key: string]: Json
}
Added in v0.5.14
Json (type alias)
Copied from fp-ts/Either
module.
Signature
export type Json = boolean | number | string | null | JsonArray | JsonRecord
Added in v0.5.14
Json
Signature
export const Json: t.Type<Json> = ...
Added in v0.5.15
JsonArray
Signature
export const JsonArray: t.Type<JsonArray> = ...
Added in v0.5.15
JsonFromString
Signature
export const JsonFromString: t.Type<Json, string, string> = ...
Added in v0.5.14
JsonRecord
Signature
export const JsonRecord: t.Type<JsonRecord> = ...
Added in v0.5.15