Libraries
    Preparing search index...

    Type Alias SubscriptionCallArgs<E>

    SubscriptionCallArgs: E extends SubscriptionBuilder<
        infer TParams,
        infer TQuery,
        infer THeaders,
        any,
        any,
        any,
        any,
        any,
    >
        ? HasKeys<Simplify<SubscriptionArgsParts<TParams, TQuery, THeaders>>> extends true
            ? Simplify<SubscriptionArgsParts<TParams, TQuery, THeaders>>
            : undefined
        : never

    Extracts the subscribe call argument shape from a SubscriptionBuilder.

    Type Parameters

    • E