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 };