supertokens-website
Version:
frontend sdk for website to be used for auth solution.
11 lines (10 loc) • 362 B
TypeScript
export * from "./lib/build/";
/**
* 'export *' does not re-export a default.
* import SuperTokens from "supertokens-website";
* 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";
export default _default;