presenter 0.9.0 → 0.9.2

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/dist/index.d.ts CHANGED
@@ -31,7 +31,7 @@ export { FontStyle } from './types/FontStyle';
31
31
  export { FontWeight } from './types/FontWeight';
32
32
  export type { Interpolator } from './types/Interpolator';
33
33
  export { ObjectType } from './types/ObjectType';
34
- export { Pause } from './types/Pause';
34
+ export { Pause, type PauseParams } from './types/Pause';
35
35
  export { Position } from './types/Position';
36
36
  export { Presentation } from './types/Presentation';
37
37
  export type { Resources } from './types/Resources';
@@ -42,7 +42,7 @@ export { SlideObject } from './types/SlideObject';
42
42
  export { SlideWebExtra } from './types/SlideWebExtra';
43
43
  export type { TextContent } from './types/TextContent';
44
44
  export { TextUnit } from './types/TextUnit';
45
- export { Update } from './types/Update';
45
+ export { Update, type UpdateParams } from './types/Update';
46
46
  export { Variable, type VariableProps } from './types/Variable';
47
47
  export { Opaque } from './utils/color/Opaque';
48
48
  export { Transparent } from './utils/color/Transparent';
@@ -4,6 +4,7 @@ export interface NavigatorState {
4
4
  readonly slides: boolean;
5
5
  readonly current: boolean;
6
6
  readonly next: boolean;
7
+ readonly notes: boolean;
7
8
  };
8
9
  }
9
10
  export declare function isNavigatorHotReloadEnabled(): boolean;