/opt/canhelp/node_modules/better-auth/dist/api/state
Edit: /opt/canhelp/node_modules/better-auth/dist/api/state/oauth.d.mts (472B)
//#region src/api/state/oauth.d.ts
type OAuthState = {
callbackURL: string;
codeVerifier: string;
errorURL?: string;
newUserURL?: string;
link?: {
email: string;
userId: string;
};
expiresAt: number;
requestSignUp?: boolean;
[key: string]: any;
};
declare const getOAuthState: () => Promise
, setOAuthState: (value: OAuthState | null) => Promise;
//#endregion
export { getOAuthState };
//# sourceMappingURL=oauth.d.mts.map