Grounds
    Preparing search index...

    Type Alias TREnum<T>

    TREnum: TRelishSchema<Static<T[keyof T]>> & {
        "[RelishKind]": "REnum";
        variants: T;
    }

    Schema type for a Relish enum (discriminated union). The inferred type is a union of the variant inner types (unwrapped).

    Type Parameters