UNPKG

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.

24 lines 430 B
export type LightningClientSession = { data: { k1: string; lnurl: string; }; intervals: { poll: number; create: number; }; query: { state: string; redirectUri: string; }; }; export type NostrClientSession = { data: { k1: string; }; query: { state: string; redirectUri: string; }; }; //# sourceMappingURL=types.d.ts.map