Libraries
    Preparing search index...

    Type Alias UnifiedGroup<TGroup>

    UnifiedGroup: { [E in keyof TGroup]: UnifiedMemberCall<TGroup[E]> } & {
        queryKey(): readonly unknown[];
    }

    A group on the unified client.

    Each endpoint is a UnifiedEndpointCall — callable with hooks. The group also exposes a queryKey() method for bulk cache invalidation.

    Type Parameters

    • TGroup extends Record<string, any>

    Type Declaration