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.
- package/package.json +1 -1
- package/types/index.d.ts +5 -2
package/package.json
CHANGED
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
|
-
|
|
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:
|
|
881
|
+
dotvvm: DotvvmGlobal;
|
|
879
882
|
}
|
|
880
883
|
}
|
|
881
884
|
export default dotvvmExports;
|