chore: bump pacakges

This commit is contained in:
2024-01-30 22:04:19 +00:00
parent 2ef1b591e2
commit ad8d0af976
12 changed files with 29 additions and 29 deletions

13
packages/shared/src/custom.d.ts vendored Normal file
View File

@ -0,0 +1,13 @@
declare module "light-bolt11-decoder" {
export function decode(pr?: string): ParsedInvoice;
export interface ParsedInvoice {
paymentRequest: string;
sections: Section[];
}
export interface Section {
name: string;
value: string | Uint8Array | number | undefined;
}
}