✨ Expose interfaces in entrypoint
This commit is contained in:
parent
92dd87172e
commit
16d8f49ed8
1 changed files with 7 additions and 1 deletions
|
@ -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 };
|
||||||
|
|
Loading…
Reference in a new issue