next-auth-pubkey
Version:
A light-weight Lightning and Nostr auth provider for your Next.js app that's entirely self-hosted and plugs seamlessly into the next-auth framework.
13 lines • 436 B
TypeScript
import { Config } from "../main/config/index.js";
export type QRGenerator = (data: string, config?: Config) => Promise<{
data: string;
type: "svg" | "png" | "jpg";
}>;
export type AvatarGenerator = (seed: string, config?: Config) => Promise<{
data: string;
type: "svg" | "png" | "jpg";
}>;
export type NameGenerator = (seed: string, config?: Config) => Promise<{
name: string;
}>;
//# sourceMappingURL=types.d.ts.map