presenter 0.8.6 → 0.8.8

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.
@@ -1,4 +1,14 @@
1
+ export interface NavigatorState {
2
+ readonly open: boolean;
3
+ readonly visibility: {
4
+ readonly slides: boolean;
5
+ readonly current: boolean;
6
+ readonly next: boolean;
7
+ };
8
+ }
1
9
  export declare function isNavigatorHotReloadEnabled(): boolean;
2
10
  export declare function shouldRestoreNavigatorAfterHotReload(): boolean;
3
11
  export declare function markNavigatorOpenForHotReload(): void;
4
12
  export declare function markNavigatorClosedForHotReload(): void;
13
+ export declare function loadNavigatorStateForHotReload(): NavigatorState;
14
+ export declare function saveNavigatorStateForHotReload(state: NavigatorState): void;