Variable cartQueryOptionConst

cartQueryOption: {
    list: () => OmitKeyof<
        UseQueryOptions<GetCartAPIResponse, GetCartAPIResponse, string[]>,
        "queryFn",
    > & { queryFn?: QueryFunction<GetCartAPIResponse, string[], never> } & {
        queryKey: string[] & {
            "[dataTagErrorSymbol]": Error;
            "[dataTagSymbol]": GetCartAPIResponse;
        };
    };
} = ...

Type declaration