dotvvm-types 4.1.0-preview19-final → 4.1.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotvvm-types",
3
- "version": "4.1.0-preview19-final",
3
+ "version": "4.1.0",
4
4
  "description": "MVVM framework for ASP.NET",
5
5
  "types": "./types/index.d.ts",
6
6
  "repository": {
package/types/index.d.ts CHANGED
@@ -869,13 +869,16 @@ declare module "dotvvm-root" {
869
869
  DotvvmEvent: typeof events.DotvvmEvent;
870
870
  };
871
871
  global {
872
- const dotvvm: typeof dotvvmExports & {
872
+ interface DotvvmGlobalExtensions {
873
+ }
874
+ type DotvvmGlobal = DotvvmGlobalExtensions & typeof dotvvmExports & {
873
875
  debug?: true;
874
876
  isSpaReady?: typeof isSpaReady;
875
877
  handleSpaNavigation?: typeof handleSpaNavigation;
876
878
  };
879
+ const dotvvm: DotvvmGlobal;
877
880
  interface Window {
878
- dotvvm: typeof dotvvmExports;
881
+ dotvvm: DotvvmGlobal;
879
882
  }
880
883
  }
881
884
  export default dotvvmExports;