@realsee/dnalogel 3.8.1 → 3.8.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.
@@ -11,7 +11,7 @@ type Data = {
11
11
  z: number;
12
12
  }>;
13
13
  };
14
- type Config = {
14
+ export type Config = {
15
15
  offset?: Partial<{
16
16
  x: number;
17
17
  y: number;
@@ -1,10 +1,11 @@
1
1
  import type { FivePlugin } from '@realsee/five';
2
2
  import * as CruisePluginTypes from './typing';
3
3
  import type { Config } from './typing';
4
+ import type { Config as MovePluginConfig } from './Move';
4
5
  import WalkController from './Work';
5
6
  import MoveController from './Move';
6
7
  export declare const CruisePlugin: FivePlugin<Config | undefined, InstanceType<typeof WalkController>>;
7
- export declare const MovePlugin: FivePlugin<Config | undefined, InstanceType<typeof MoveController>>;
8
+ export declare const MovePlugin: FivePlugin<MovePluginConfig | undefined, InstanceType<typeof MoveController>>;
8
9
  export { WalkController, MoveController, WalkController as CruisePluginController };
9
10
  export type { CruisePluginExportType } from './typing';
10
11
  export { CruisePluginTypes };