Variable userQueryOptionConst

userQueryOption: {
    all: () => OmitKeyof<
        UseQueryOptions<UserInfoResponse, UserInfoResponse, (null | string)[]>,
        "queryFn",
    > & { queryFn?: QueryFunction<UserInfoResponse, (null | string)[], never> } & {
        queryKey: (null | string)[] & {
            "[dataTagErrorSymbol]": Error;
            "[dataTagSymbol]": UserInfoResponse;
        };
    };
} = ...

Type declaration

  • all: () => OmitKeyof<
        UseQueryOptions<UserInfoResponse, UserInfoResponse, (null | string)[]>,
        "queryFn",
    > & { queryFn?: QueryFunction<UserInfoResponse, (null | string)[], never> } & {
        queryKey: (null | string)[] & {
            "[dataTagErrorSymbol]": Error;
            "[dataTagSymbol]": UserInfoResponse;
        };
    }