@realsee/dnalogel 3.42.0-alpha-tag.22 → 3.42.0-alpha-tag.24

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,8 +1,8 @@
1
- import type { FivePlugin } from '@realsee/five';
1
+ import type { Five } from '@realsee/five';
2
2
  import PanoTagPluginController from './controller';
3
3
  export * from './controller';
4
4
  export * from './typings';
5
5
  export type PanoTagPluginExportInterface = InstanceType<typeof PanoTagPluginController>;
6
6
  export type PanoTagPluginParamsInterface = ConstructorParameters<typeof PanoTagPluginController>[1];
7
- export declare const PanoTagPlugin: FivePlugin<PanoTagPluginParamsInterface, PanoTagPluginExportInterface>;
7
+ export declare const PanoTagPlugin: (five: Five, params?: PanoTagPluginParamsInterface) => PanoTagPluginController;
8
8
  export default PanoTagPlugin;