@prose-reader/core 1.172.0 → 1.174.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.
@@ -138,7 +138,7 @@ export declare const createReaderWithEnhancers: (options: Partial<import('./sett
138
138
  theme$: import('rxjs').Observable<import('./enhancers/theme').Theme>;
139
139
  };
140
140
  };
141
- }, "load"> & import('./enhancers/navigation/types').NavigationEnhancerOutput & import('./enhancers/zoom/types').EnhancerApi, "settings"> & {
141
+ }, "load"> & import('./enhancers/navigation/types').NavigationEnhancerOutput & import('./enhancers/zoom/types').ZoomEnhancerOutput, "settings"> & {
142
142
  settings: import('./settings/SettingsInterface').SettingsInterface<import('./settings/types').CoreInputSettings & import('./enhancers/layoutEnhancer/types').InputSettings, import('./enhancers/layoutEnhancer/types').InputSettings & import('./settings/types').CoreInputSettings & import('./settings/types').ComputedCoreSettings>;
143
143
  } & {
144
144
  utils: {
@@ -1,3 +1,3 @@
1
1
  import { Reader } from '../../reader';
2
- import { EnhancerApi } from './types';
3
- export declare const zoomEnhancer: <InheritOptions, InheritOutput extends Reader>(next: (options: InheritOptions) => InheritOutput) => (options: InheritOptions) => InheritOutput & EnhancerApi;
2
+ import { ZoomEnhancerOutput } from './types';
3
+ export declare const zoomEnhancer: <InheritOptions, InheritOutput extends Reader>(next: (options: InheritOptions) => InheritOutput) => (options: InheritOptions) => InheritOutput & ZoomEnhancerOutput;
@@ -1,5 +1,5 @@
1
1
  import { Observable } from 'rxjs';
2
- export type EnhancerApi = {
2
+ export type ZoomEnhancerOutput = {
3
3
  zoom: {
4
4
  enter: (imgElement?: HTMLImageElement) => void;
5
5
  exit: () => void;