|
|
|
|
@ -75,4 +75,4 @@ export type Source<V = unknown> = Value<V>;
|
|
|
|
|
|
|
|
|
|
export type MaybeSource<T = unknown> = T | Source<T>;
|
|
|
|
|
|
|
|
|
|
export type ValueNode = { s: Source, n: null | ValueNode, v: any };
|
|
|
|
|
export type ValueNode = { s: Source; n: null | ValueNode; v: any };
|
|
|
|
|
|