@sprucelabs/heartwood-view-controllers 111.1.50 → 111.1.51

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.
@@ -519,9 +519,7 @@ export interface AppController {
519
519
  export type BuiltAppController = AppController & {
520
520
  id: string;
521
521
  };
522
- export type AppControllerConstructor = (new (options: ViewControllerOptions) => AppController) & {
523
- id: string;
524
- };
522
+ export type AppControllerConstructor = new (options: ViewControllerOptions) => AppController;
525
523
  export interface AppControllerLoadOptions {
526
524
  router: Router;
527
525
  authenticator: Authenticator;
@@ -72,6 +72,7 @@ export default class ViewControllerFactory {
72
72
  this.importPlugins(plugins);
73
73
  }
74
74
  setAppController(App) {
75
+ //@ts-ignore
75
76
  this.AppMap[App.id] = App;
76
77
  }
77
78
  importPlugins(pluginsByName) {
@@ -519,9 +519,7 @@ export interface AppController {
519
519
  export type BuiltAppController = AppController & {
520
520
  id: string;
521
521
  };
522
- export type AppControllerConstructor = (new (options: ViewControllerOptions) => AppController) & {
523
- id: string;
524
- };
522
+ export type AppControllerConstructor = new (options: ViewControllerOptions) => AppController;
525
523
  export interface AppControllerLoadOptions {
526
524
  router: Router;
527
525
  authenticator: Authenticator;
@@ -70,6 +70,7 @@ class ViewControllerFactory {
70
70
  this.importPlugins(plugins);
71
71
  }
72
72
  setAppController(App) {
73
+ //@ts-ignore
73
74
  this.AppMap[App.id] = App;
74
75
  }
75
76
  importPlugins(pluginsByName) {
package/package.json CHANGED
@@ -13,7 +13,7 @@
13
13
  "sideEffects": false,
14
14
  "license": "MIT",
15
15
  "description": "All the power of Heartwood in one, convenient package.",
16
- "version": "111.1.50",
16
+ "version": "111.1.51",
17
17
  "skill": {
18
18
  "namespace": "HeartwoodViewControllers",
19
19
  "commandOverrides": {