next-bungie-auth
Version:
Next Bungie Auth is an open source Next.js library that provides a configurable solution for authenticating your users with Bungie.net
7 lines (6 loc) • 463 B
TypeScript
import type { NextBungieAuth, NextBungieAuthConfig, NextBungieAuthConfigRequiredKeys } from "./types";
import { DefaultBungieAuthConfig } from "./internal/config";
import { BungieAuthorizationError } from "./internal/error";
export { DefaultBungieAuthConfig };
export { BungieAuthorizationError };
export declare const createNextBungieAuth: (config: Partial<NextBungieAuthConfig> & Pick<NextBungieAuthConfig, NextBungieAuthConfigRequiredKeys>) => NextBungieAuth;