aboutsummaryrefslogtreecommitdiff
path: root/src/pen-gestures/GestureTypes.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-16 23:42:12 -0400
committerbobzel <zzzman@gmail.com>2024-05-16 23:42:12 -0400
commit99931c4ca423d51555c24533a98e921c83c941e1 (patch)
tree07baab3cb627eae837c18fb2a6981a746765ec61 /src/pen-gestures/GestureTypes.ts
parenta197d8d37e62235bfa59bc8e3bb74c39381c30a4 (diff)
parent69e286b504c2f1bbef7d489dc675b9e54ef8d983 (diff)
Merge branch 'restoringEslint' into eleanor-starter
Diffstat (limited to 'src/pen-gestures/GestureTypes.ts')
-rw-r--r--src/pen-gestures/GestureTypes.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pen-gestures/GestureTypes.ts b/src/pen-gestures/GestureTypes.ts
new file mode 100644
index 000000000..d86562580
--- /dev/null
+++ b/src/pen-gestures/GestureTypes.ts
@@ -0,0 +1,16 @@
+export enum Gestures {
+ Line = 'line',
+ Stroke = 'stroke',
+ Scribble = 'scribble',
+ Text = 'text',
+ Triangle = 'triangle',
+ Circle = 'circle',
+ Rectangle = 'rectangle',
+ Arrow = 'arrow',
+}
+
+// Defines a point in an ink as a pair of x- and y-coordinates.
+export interface PointData {
+ X: number;
+ Y: number;
+}