♻️ Re-export functions

This commit is contained in:
C-3PO 2018-11-16 00:42:26 +01:00
parent 6eea513c4b
commit 93b3d6c75d
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -1,14 +1,12 @@
//Make endpoints available for import by other modules
import IManifest from './interfaces/IManifest';
import ISolidSimple from './interfaces/ISolidSimple';
import { ISsnFileEntry } from './interfaces/ISsnFileEntry';
import Product from './interfaces/Product';
import findReleasePath from './ssn/findReleasePath';
import getManifest from './ssn/getManifest';
import getPatchZip from './ssn/getPatchZip';
import getSolidpkg from './ssn/getSolidpkg';
import installPatch from './ssn/installPatch';
import verifyProductName from './ssn/verify/verifyProductName';
export { IManifest, ISolidSimple, ISsnFileEntry, Product, findReleasePath, getManifest, installPatch, getSolidpkg, getPatchZip, verifyProductName };
export { default as IManifest } from './interfaces/IManifest';
export { default as ISolidSimple } from './interfaces/ISolidSimple';
export { ISsnFileEntry } from './interfaces/ISsnFileEntry';
export { default as Product } from './interfaces/Product';
export { default as findReleasePath } from './ssn/findReleasePath';
export { default as getManifest } from './ssn/getManifest';
export { default as getPatchZip } from './ssn/getPatchZip';
export { default as getSolidpkg } from './ssn/getSolidpkg';
export { default as installPatch } from './ssn/installPatch';
export { default as verifyProductName } from './ssn/verify/verifyProductName';