♻️ Re-export functions
This commit is contained in:
parent
6eea513c4b
commit
93b3d6c75d
1 changed files with 10 additions and 12 deletions
22
src/index.ts
22
src/index.ts
|
@ -1,14 +1,12 @@
|
||||||
//Make endpoints available for import by other modules
|
//Make endpoints available for import by other modules
|
||||||
|
|
||||||
import IManifest from './interfaces/IManifest';
|
export { default as IManifest } from './interfaces/IManifest';
|
||||||
import ISolidSimple from './interfaces/ISolidSimple';
|
export { default as ISolidSimple } from './interfaces/ISolidSimple';
|
||||||
import { ISsnFileEntry } from './interfaces/ISsnFileEntry';
|
export { ISsnFileEntry } from './interfaces/ISsnFileEntry';
|
||||||
import Product from './interfaces/Product';
|
export { default as Product } from './interfaces/Product';
|
||||||
import findReleasePath from './ssn/findReleasePath';
|
export { default as findReleasePath } from './ssn/findReleasePath';
|
||||||
import getManifest from './ssn/getManifest';
|
export { default as getManifest } from './ssn/getManifest';
|
||||||
import getPatchZip from './ssn/getPatchZip';
|
export { default as getPatchZip } from './ssn/getPatchZip';
|
||||||
import getSolidpkg from './ssn/getSolidpkg';
|
export { default as getSolidpkg } from './ssn/getSolidpkg';
|
||||||
import installPatch from './ssn/installPatch';
|
export { default as installPatch } from './ssn/installPatch';
|
||||||
import verifyProductName from './ssn/verify/verifyProductName';
|
export { default as verifyProductName } from './ssn/verify/verifyProductName';
|
||||||
|
|
||||||
export { IManifest, ISolidSimple, ISsnFileEntry, Product, findReleasePath, getManifest, installPatch, getSolidpkg, getPatchZip, verifyProductName };
|
|
||||||
|
|
Loading…
Reference in a new issue