From 2c38381a814696f06cda232d7818bff324461691 Mon Sep 17 00:00:00 2001 From: Julio Brugos Date: Tue, 23 Feb 2021 05:19:50 +0000 Subject: [PATCH] exporting original Statement --- package.json | 5 +++-- src/index.ts | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d462d29..64aab73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "snowflake-multisql", - "version": "1.2.0", + "version": "1.2.1", "description": "Multi SQL Statement, Promise-based, TypeScript wrapper for Snowflake SDK", "repository": "github:brugos/snowflake-multisql", "bugs": "https://github.com/brugos/snowflake-multisql/issues", @@ -19,7 +19,8 @@ "prepare": "del-cli build && tsc", "test": "mocha --timeout 60000", "test:watch": "yarn test:mocha -w", - "test:coverage": "yarn test && open && open ./coverage/lcov-report/index.ts.html" + "test:coverage": "yarn test && open && open ./coverage/lcov-report/index.ts.html", + "lint": "tsc --noEmit" }, "engines": { "node": ">=10" diff --git a/src/index.ts b/src/index.ts index 6347cd9..3654085 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,6 +7,7 @@ export { } from "./snowflake-multisql"; export { loadFiles } from "./utils"; export { + Statement, ConnectionOptions, ExecuteOptions, SnowflakeError,