@traversable/schema
    Preparing search index...
    interface object<T, KS extends RequiredKeys<T> = RequiredKeys<T>> {
        toJsonSchema(): {
            properties: {
                [K in string
                | number
                | symbol]: Returns<T[K]["toJsonSchema" & keyof T[K]]>
            };
            required: { [I in string
            | number
            | symbol]: KS[I] & string };
            type: "object";
        };
    }

    Type Parameters

    Index

    Methods

    Methods

    • Returns {
          properties: {
              [K in string | number | symbol]: Returns<
                  T[K]["toJsonSchema" & keyof T[K]],
              >
          };
          required: { [I in string
          | number
          | symbol]: KS[I] & string };
          type: "object";
      }