From 79517d8b78895f34b1cefbd80480fac081a59b7d Mon Sep 17 00:00:00 2001 From: Dennis de Klerk Date: Thu, 6 Sep 2018 09:53:12 +0200 Subject: [PATCH] fix(Type): Expose Type class --- package.json | 2 +- src/heat-sdk.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d5f623c..a390371 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "heat-sdk", - "version": "0.14.0", + "version": "1.0.1", "description": "HEAT support libraries for use in Node.js and any (modern) browser", "keywords": [ "heat", diff --git a/src/heat-sdk.ts b/src/heat-sdk.ts index c9246fc..95f4db5 100644 --- a/src/heat-sdk.ts +++ b/src/heat-sdk.ts @@ -41,11 +41,13 @@ import { Fee } from "./fee" import { setRandomSource } from "./random-bytes" import { HeatRpc } from "./heat-rpc" import * as types from "./types" +import * as avro from "./avro" export const attachment = _attachment export const Builder = builder.Builder export const TransactionImpl = builder.TransactionImpl export const Transaction = transaction.Transaction +export const Type = avro.Type export interface ConfigArgs { isTestnet?: boolean