supertokens-website
Version:
frontend sdk for website to be used for auth solution.
10 lines (9 loc) • 406 B
TypeScript
import { CookieHandlerInterface, CookieHandlerInput } from "./types";
export default class CookieHandlerReference {
private static instance?;
cookieHandler: CookieHandlerInterface;
constructor(cookieHandlerInput?: CookieHandlerInput);
static init(cookieHandlerInput?: CookieHandlerInput): void;
static getReferenceOrThrow(): CookieHandlerReference;
}
export { CookieHandlerReference };