Vue OpenAPI Query Documentation
    Preparing search index...

    Interface Refetchable

    Minimal interface satisfied by QueryReturn. Used for refetchEndpoints in cache invalidation options.

    Uses Promise<unknown> so this is compatible with TanStack's real refetch return type (Promise<QueryObserverResult<TData, TError>>).

    interface Refetchable {
        refetch: () => Promise<unknown>;
    }
    Index

    Properties

    Properties

    refetch: () => Promise<unknown>