Type Utils
    Preparing search index...

    Function getStructMetadata

    • Type Parameters

      • U

      Parameters

      Returns
          | V3.AnyStruct
          | V3.GenericStruct<U, true>
          | {
              context?: Record<string, any> | null;
              kind?: string;
              optional: boolean;
              schema: TypeGuard<U>;
              type: "custom";
          }

      • V3.AnyStruct
      • V3.GenericStruct<U, true>
      • {
            context?: Record<string, any> | null;
            kind?: string;
            optional: boolean;
            schema: TypeGuard<U>;
            type: "custom";
        }
        • Optionalcontext?: Record<string, any> | null

          context metadata for the custom struct

        • Optionalkind?: string

          kind of the custom struct's value mapped

        • optional: boolean
        • schema: TypeGuard<U>
        • type: "custom"