Skip to content

v1.0.2

Latest

Choose a tag to compare

@eropple eropple released this 05 Feb 01:40
4680d90
  • fixed a bug where the following construction didn't locate the inner item:
    export const A = schemaType(
      "A",
      Type.Object({
        pages: Type.Array(B),  // <-- nested schemaType here
      })
    );