UNPKG

@getalby/lightning-tools

Version:

Collection of helpful building blocks and tools to develop Bitcoin Lightning web apps

15 lines (14 loc) 264 B
export type InvoiceArgs = { pr: string; verify?: string; preimage?: string; successAction?: SuccessAction; }; export type SuccessAction = { tag: "message"; message: string; } | { tag: "url"; description: string; url: string; };