@angular-wave/angular.ts 0.9.2 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- <p>Version: 0.9.2</p>
1
+ <p>Version: 0.9.3</p>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@angular-wave/angular.ts",
3
3
  "description": "A modern, optimized and type-safe version of AngularJS",
4
4
  "license": "MIT",
5
- "version": "0.9.2",
5
+ "version": "0.9.3",
6
6
  "type": "module",
7
7
  "main": "dist/angular-ts.esm.js",
8
8
  "module": "dist/angular-ts.esm.js",
package/src/interface.ts CHANGED
@@ -20,10 +20,10 @@ declare global {
20
20
  }
21
21
 
22
22
  namespace ng {
23
- type Scope = typeof Scope;
24
- type NgModule = typeof NgModule;
25
- type PubSubProvider = typeof PubSubProvider;
26
- type PubSub = typeof PubSub;
23
+ type Scope = InstanceType<typeof Scope>;
24
+ type NgModule = InstanceType<typeof NgModule>;
25
+ type PubSubProvider = InstanceType<typeof PubSubProvider>;
26
+ type PubSub = InstanceType<typeof PubSub>;
27
27
  type ErrorHandlingConfig = iErrorHandlingConfig;
28
28
  }
29
29
  }
@@ -5,7 +5,6 @@
5
5
  * @extends {ServiceProvider}
6
6
  */
7
7
  export class PubSubProvider {
8
- /** @private */
9
8
  constructor() {
10
9
  /**
11
10
  * @type {PubSub}