mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-09 04:18:51 +08:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
/// <reference path='bip21.d.ts' />
|
|
|
|
let decoded:any = bip21.decode('bitcoin:1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH?amount=20.3&label=Foobar');
|
|
|
|
let encoded:string = bip21.encode('1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH', {
|
|
amount: 20.3,
|
|
label: 'Foobar'
|
|
});
|
|
|