UNPKG
@tezwell/michelson-sdk
Version:
latest (0.4.4)
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Michelson SDK is a framework for generating Michelson values and types from Javascript.
@tezwell/michelson-sdk
/
converter
/
index.d.ts
7 lines
(6 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
MichelsonJSON
,
MichelsonMicheline
}
from
'../typings'
;
export
declare
const
michelineOfJSON
:
(
json
:
MichelsonJSON
) =>
MichelsonMicheline
;
declare
const
Converter
: {
michelineOfJSON
:
(
json
:
MichelsonJSON
) =>
MichelsonMicheline
; };
export
default
Converter
;