Expose interfaces in entrypoint

This commit is contained in:
C-3PO 2018-10-19 00:54:28 +02:00
parent 92dd87172e
commit 16d8f49ed8
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -1,8 +1,14 @@
//Make endpoints available for import by other modules //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 findReleasePath from './ssn/findReleasePath';
import getManifest from './ssn/getManifest'; import getManifest from './ssn/getManifest';
import getPatch from './ssn/getPatch'; import getPatch from './ssn/getPatch';
import getSolidpkg from './ssn/getSolidpkg'; 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 };