Grounds
    Preparing search index...

    Type Alias TRStruct<T>

    TRStruct: TRelishSchema<
        {
            readonly [K in keyof T]: T[K] extends { static: infer S } ? S : unknown
        },
    > & { "[RelishKind]": "RStruct"; fields: T }

    Schema type for a Relish struct.

    Type Parameters