@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.
@@ -17,10 +17,10 @@ declare global {
17
17
  $inject?: readonly string[] | undefined;
18
18
  }
19
19
  namespace ng {
20
- type Scope = typeof Scope;
21
- type NgModule = typeof NgModule;
22
- type PubSubProvider = typeof PubSubProvider;
23
- type PubSub = typeof PubSub;
20
+ type Scope = InstanceType<typeof Scope>;
21
+ type NgModule = InstanceType<typeof NgModule>;
22
+ type PubSubProvider = InstanceType<typeof PubSubProvider>;
23
+ type PubSub = InstanceType<typeof PubSub>;
24
24
  type ErrorHandlingConfig = iErrorHandlingConfig;
25
25
  }
26
26
  }
@@ -1,4 +1,4 @@
1
- /* Version: 0.9.2 - October 9, 2025 19:13:01 */
1
+ /* Version: 0.9.3 - October 9, 2025 19:24:12 */
2
2
  const VALID_CLASS = "ng-valid";
3
3
  const INVALID_CLASS = "ng-invalid";
4
4
  const PRISTINE_CLASS = "ng-pristine";
@@ -28571,7 +28571,6 @@ class Rejection {
28571
28571
  * @extends {ServiceProvider}
28572
28572
  */
28573
28573
  class PubSubProvider {
28574
- /** @private */
28575
28574
  constructor() {
28576
28575
  /**
28577
28576
  * @type {PubSub}
@@ -35702,7 +35701,7 @@ class Angular {
35702
35701
  /**
35703
35702
  * @type {string} `version` from `package.json`
35704
35703
  */
35705
- this.version = "0.9.2"; //inserted via rollup plugin
35704
+ this.version = "0.9.3"; //inserted via rollup plugin
35706
35705
 
35707
35706
  /** @type {!Array<string|any>} */
35708
35707
  this.bootsrappedModules = [];
@@ -1,4 +1,4 @@
1
- /* Version: 0.9.2 - October 9, 2025 19:13:00 */
1
+ /* Version: 0.9.3 - October 9, 2025 19:24:11 */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
4
4
  typeof define === 'function' && define.amd ? define(['exports'], factory) :
@@ -28577,7 +28577,6 @@
28577
28577
  * @extends {ServiceProvider}
28578
28578
  */
28579
28579
  class PubSubProvider {
28580
- /** @private */
28581
28580
  constructor() {
28582
28581
  /**
28583
28582
  * @type {PubSub}
@@ -35708,7 +35707,7 @@
35708
35707
  /**
35709
35708
  * @type {string} `version` from `package.json`
35710
35709
  */
35711
- this.version = "0.9.2"; //inserted via rollup plugin
35710
+ this.version = "0.9.3"; //inserted via rollup plugin
35712
35711
 
35713
35712
  /** @type {!Array<string|any>} */
35714
35713
  this.bootsrappedModules = [];