diff --git a/dist/index.d.ts b/dist/index.d.ts index 4c41364..efd66dd 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -5,6 +5,4 @@ import Services from "./src/services"; import Verification from "./src/verification"; import Workfolder from "./src/workfolder"; import Driver from "./src/driver"; -import App from "./src/interfaces/app"; -import Service from "./src/interfaces/service"; -export { Apps, Files, Permission, Services, Verification, Workfolder, Driver, App, Service }; +export { Apps, Files, Permission, Services, Verification, Workfolder, Driver }; diff --git a/dist/src/interfaces/index.d.ts b/dist/src/interfaces/index.d.ts deleted file mode 100644 index 476172d..0000000 --- a/dist/src/interfaces/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare const _default: { - App: any; - Service: any; -}; -export default _default; diff --git a/dist/src/interfaces/index.js b/dist/src/interfaces/index.js deleted file mode 100644 index 8f580ee..0000000 --- a/dist/src/interfaces/index.js +++ /dev/null @@ -1,8 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -var App = require("./app"); -var Service = require("./service"); -exports.default = { - App: App, - Service: Service -}; diff --git a/index.ts b/index.ts index 927bb50..a6a555b 100644 --- a/index.ts +++ b/index.ts @@ -6,9 +6,6 @@ import Verification from "./src/verification"; import Workfolder from "./src/workfolder"; import Driver from "./src/driver"; -import App from "./src/interfaces/app"; -import Service from "./src/interfaces/service"; - export { Apps, Files, @@ -16,7 +13,5 @@ export { Services, Verification, Workfolder, - Driver, - App, - Service + Driver } \ No newline at end of file diff --git a/package.json b/package.json index f6b6798..5f68dc0 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wg-core", - "version": "0.1.1", + "version": "0.1.2", "description": "Core for the Web-Glasses project.", "repository": { "type": "git",