Interface VisitorQueryResult<TExtended>

interface VisitorQueryResult<TExtended> {
    data?: VisitorData<TExtended>;
    error?: Error;
    isLoading?: boolean;
}

Type Parameters

  • TExtended extends boolean

Hierarchy (view full)

Properties

Stores current query data

error?: Error

Stores current query error

isLoading?: boolean

Is true while query is loading

Generated using TypeDoc