@leafer/interface 1.0.0-beta.8 → 1.0.0-beta.9
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/package.json
CHANGED
package/src/app/ILeafer.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { IBounds } from '../math/IMath'
|
|
|
8
8
|
import { IControl } from '../control/IControl'
|
|
9
9
|
import { IKeepTouchData } from '../event/IEvent'
|
|
10
10
|
import { ILeaferCanvas } from '../canvas/ILeaferCanvas'
|
|
11
|
+
import { IObject } from '../data/IData'
|
|
11
12
|
|
|
12
13
|
export interface IInteraction extends IControl {
|
|
13
14
|
target: ILeaf
|
|
@@ -51,6 +52,7 @@ export interface IInteractionConfig {
|
|
|
51
52
|
pointer?: IPointerConfig
|
|
52
53
|
zoom?: IZoomConfig
|
|
53
54
|
move?: IMoveConfig
|
|
55
|
+
eventer?: IObject
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
export interface IZoomConfig {
|