UNPKG
@libra-opensource/client-sdk-typescript
Version:
latest (1.0.8)
1.0.8
1.0.7
1.0.6
1.0.5
Diem client SDK
github.com/diem/client-sdk-typescript
diem/client-sdk-typescript
@libra-opensource/client-sdk-typescript
/
dist
/
cli
/
commands
/
getMetadata.d.ts
7 lines
(6 loc)
•
251 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
BaseCommand
,
Logger
}
from
'./command'
;
export
interface
GetMetadataCommand
extends
BaseCommand
{
_
: [
'get_metadata'
];
txVersion
:
BigInt
; }
export
declare
function
getMetadata
(
argv
:
GetMetadataCommand
,
logger
:
Logger
):
Promise
<
void
>;