better-auth
Version:
The most comprehensive authentication framework for TypeScript.
8 lines (7 loc) • 398 B
text/typescript
import { AuthContext } from "@better-auth/core";
//#region src/oauth2/utils.d.ts
declare function decryptOAuthToken(token: string, ctx: AuthContext): string | Promise<string>;
declare function setTokenUtil(token: string | null | undefined, ctx: AuthContext): string | Promise<string> | null | undefined;
//#endregion
export { decryptOAuthToken, setTokenUtil };
//# sourceMappingURL=utils.d.mts.map