supertokens-node
Version:
NodeJS driver for SuperTokens core
11 lines (10 loc) • 409 B
TypeScript
export * from "../../lib/build/recipe/session/claims";
/**
* 'export *' does not re-export a default.
* import NextJS from "supertokens-node/nextjs";
* the above import statement won't be possible unless either
* - user add "esModuleInterop": true in their tsconfig.json file
* - we do the following change:
*/
import * as _default from "../../lib/build/recipe/session/claims";
export default _default;