UNPKG

lightning-auth-and-payment

Version:

Lightning Network authentication and payment processing library for modern web applications

12 lines 368 B
interface User { id: string; lnPubkey: string | null; authenticated: boolean; } interface AuthHeaderProps { className?: string; onAuthChange?: (user: User | null) => void; } export declare function AuthHeader({ className, onAuthChange }: AuthHeaderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AuthHeader.d.ts.map