@sprucelabs/heartwood-view-controllers 111.1.52 → 111.1.53

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.
@@ -26,17 +26,13 @@ export default class ViewControllerFactory {
26
26
  setAppController(App: AppControllerConstructor): void;
27
27
  private importPlugins;
28
28
  BuildPlugin<P extends ViewControllerPlugin>(Plugin: new (options: ViewControllerPluginOptions) => P): P;
29
- BuildApp<A extends AppController>(App: new (options: ViewControllerOptions) => A): A & {
30
- id: string;
31
- };
29
+ BuildApp<A extends AppController>(App: new (options: ViewControllerOptions) => A): A;
32
30
  hasController(name: string): boolean;
33
31
  hasApp(namespace: string): boolean;
34
32
  getController<N extends ViewControllerId>(name: N): any;
35
33
  setDates(dates: DateUtil): void;
36
34
  addPlugin(named: string, plugin: ViewControllerPlugin): void;
37
- App<Id extends AppControllerId>(namespace: Id): AppControllerMap[Id] & {
38
- id: Id;
39
- };
35
+ App<Id extends AppControllerId>(namespace: Id): AppControllerMap[Id];
40
36
  Controller<N extends ViewControllerId, O extends ControllerOptions<N>>(id: N, options: O): ViewControllerMap[N];
41
37
  protected buildViewContructorOptions(name: string, options?: Record<string, any>): ViewControllerOptions;
42
38
  private sharedConstructorOptions;
@@ -26,17 +26,13 @@ export default class ViewControllerFactory {
26
26
  setAppController(App: AppControllerConstructor): void;
27
27
  private importPlugins;
28
28
  BuildPlugin<P extends ViewControllerPlugin>(Plugin: new (options: ViewControllerPluginOptions) => P): P;
29
- BuildApp<A extends AppController>(App: new (options: ViewControllerOptions) => A): A & {
30
- id: string;
31
- };
29
+ BuildApp<A extends AppController>(App: new (options: ViewControllerOptions) => A): A;
32
30
  hasController(name: string): boolean;
33
31
  hasApp(namespace: string): boolean;
34
32
  getController<N extends ViewControllerId>(name: N): any;
35
33
  setDates(dates: DateUtil): void;
36
34
  addPlugin(named: string, plugin: ViewControllerPlugin): void;
37
- App<Id extends AppControllerId>(namespace: Id): AppControllerMap[Id] & {
38
- id: Id;
39
- };
35
+ App<Id extends AppControllerId>(namespace: Id): AppControllerMap[Id];
40
36
  Controller<N extends ViewControllerId, O extends ControllerOptions<N>>(id: N, options: O): ViewControllerMap[N];
41
37
  protected buildViewContructorOptions(name: string, options?: Record<string, any>): ViewControllerOptions;
42
38
  private sharedConstructorOptions;
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.52",
16
+ "version": "111.1.53",
17
17
  "skill": {
18
18
  "namespace": "HeartwoodViewControllers",
19
19
  "commandOverrides": {