@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
9 lines (8 loc) • 479 B
TypeScript
export declare const ssoQueryKeys: {
all: (userId?: string) => readonly ["auth", "sso", string | null];
providers: {
all: (userId?: string) => readonly ["auth", "sso", string | null, "providers"];
detail: (userId: string | undefined, providerId: string | undefined) => readonly ["auth", "sso", string | null, "providers", "detail", string | null];
list: (userId?: string) => readonly ["auth", "sso", string | null, "providers", "list"];
};
};