StringTreeA Tree of string | undefined nodes. Leaf values are either a
string representation or undefined for opaque/declaration types.
Canonical CodecsTree
Source effect/Schema.ts:135851 lines
export type type StringTree =
| string
| TreeRecord<string | undefined>
| readonly Tree<string | undefined>[]
| undefined
A
Tree
of string | undefined nodes. Leaf values are either a
string representation or undefined for opaque/declaration types.
StringTree = type Tree<Node> =
| Node
| TreeRecord<Node>
| readonly Tree<Node>[]
Creates a recursive schema for a
Tree
of values described by node.
The resulting schema accepts a single node value, an array of trees, or an
object whose values are trees.
Recursive tree type whose leaves are Node values and whose branches are
readonly arrays or string-keyed records of child trees.
Tree<string | undefined>Referenced by 1 symbols