hashbrown

FromJsonAstResult

API

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