supertokens-node
Version:
NodeJS driver for SuperTokens core
14 lines (13 loc) • 411 B
TypeScript
// @ts-nocheck
import { APIInterface, APIOptions } from "..";
import { UserContext } from "../../../types";
export declare function endSessionGET(
apiImplementation: APIInterface,
options: APIOptions,
userContext: UserContext
): Promise<boolean>;
export declare function endSessionPOST(
apiImplementation: APIInterface,
options: APIOptions,
userContext: UserContext
): Promise<boolean>;