aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions/mark.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/actions/mark.ts')
-rw-r--r--src/content/actions/mark.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/content/actions/mark.ts b/src/content/actions/mark.ts
deleted file mode 100644
index 1068507..0000000
--- a/src/content/actions/mark.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import * as actions from './index';
-
-const startSet = (): actions.MarkAction => {
- return { type: actions.MARK_START_SET };
-};
-
-const startJump = (): actions.MarkAction => {
- return { type: actions.MARK_START_JUMP };
-};
-
-const cancel = (): actions.MarkAction => {
- return { type: actions.MARK_CANCEL };
-};
-
-export {
- startSet, startJump, cancel,
-};