@tezwell/michelson-sdk
Version:
Michelson SDK is a framework for generating Michelson values and types from Javascript.
9 lines (8 loc) • 505 B
TypeScript
import { MichelsonJSON, MichelsonJSON_Prim, MichelsonMicheline } from '../typings';
export declare const toMicheline: (michelson: MichelsonJSON, padding?: string) => MichelsonMicheline;
declare const Michelson_JSON: {
toMichelineType: (michelson: MichelsonJSON_Prim) => MichelsonMicheline;
toMichelineSeq: (michelson: MichelsonJSON[], identation: string) => MichelsonMicheline;
toMicheline: (michelson: MichelsonJSON, padding?: string) => MichelsonMicheline;
};
export default Michelson_JSON;