UNPKG

@wristband/nextjs-auth

Version:

SDK for integrating your Next.js application with Wristband. Handles user authentication, session management, and token management.

10 lines (9 loc) 371 B
import { WristbandAuthImpl } from './wristband-auth-impl'; /** * Wristband SDK function to create an instance of WristbandAuth. * @param {AuthConfig} - authConfig Configuration for Wristband authentication. * @returns {WristbandAuth} - An instance of WristbandAuth. */ export function createWristbandAuth(authConfig) { return new WristbandAuthImpl(authConfig); }