feat(panOnScroll): add mode options free, vertical and horizontal

This commit is contained in:
moklick
2020-11-10 17:56:19 +01:00
parent 8bba855a17
commit ae6ce3cd05
6 changed files with 39 additions and 5 deletions
+6
View File
@@ -331,3 +331,9 @@ export type FlowTransform = {
export type TranslateExtent = [[number, number], [number, number]];
export type KeyCode = number | string;
export enum PanOnScrollMode {
Free = 'free',
Vertical = 'vertical',
Horizontal = 'horizontal',
}