API
export type FromJsonAstResult<T> =
| {
state: "match";
value: T;
}
| {
state: "no-match";
}
| {
state: "invalid";
};FromJsonAstResult
@typeTexport type FromJsonAstResult<T> =
| {
state: "match";
value: T;
}
| {
state: "no-match";
}
| {
state: "invalid";
};@typeT