From 16d8f49ed80b8f5b45b74fa0916ea017a4a3a0e8 Mon Sep 17 00:00:00 2001 From: C-3PO Date: Fri, 19 Oct 2018 00:54:28 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Expose=20interfaces=20in=20entrypoi?= =?UTF-8?q?nt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index cbe715b..24a7ef7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,14 @@ //Make endpoints available for import by other modules +import IManifest from './interfaces/IManifest'; +import { Product } from './interfaces/ISettings'; +import ISolidSimple from './interfaces/ISolidSimple'; +import { ISsnFileEntry } from './interfaces/ISsnFileEntry'; import findReleasePath from './ssn/findReleasePath'; import getManifest from './ssn/getManifest'; import getPatch from './ssn/getPatch'; import getSolidpkg from './ssn/getSolidpkg'; +import getSolidpkgZip from './ssn/getSolidpkgZip'; +import verifyProductName from './ssn/verify/verifyProductName'; -export { findReleasePath, getManifest, getSolidpkg, getPatch }; +export { IManifest, ISolidSimple, ISsnFileEntry, Product, findReleasePath, getManifest, getPatch, getSolidpkg, getSolidpkgZip, verifyProductName };