aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/actions/index.ts')
-rw-r--r--src/content/actions/index.ts11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/content/actions/index.ts b/src/content/actions/index.ts
index f6d19aa..eb826fc 100644
--- a/src/content/actions/index.ts
+++ b/src/content/actions/index.ts
@@ -20,7 +20,6 @@ export const FOLLOW_CONTROLLER_BACKSPACE = 'follow.controller.backspace';
export const MARK_START_SET = 'mark.start.set';
export const MARK_START_JUMP = 'mark.start.jump';
export const MARK_CANCEL = 'mark.cancel';
-export const MARK_SET_LOCAL = 'mark.set.local';
export const NOOP = 'noop';
@@ -64,13 +63,6 @@ export interface MarkCancelAction extends Redux.Action {
type: typeof MARK_CANCEL;
}
-export interface MarkSetLocalAction extends Redux.Action {
- type: typeof MARK_SET_LOCAL;
- key: string;
- x: number;
- y: number;
-}
-
export interface NoopAction extends Redux.Action {
type: typeof NOOP;
}
@@ -80,8 +72,7 @@ export type FollowAction =
FollowControllerEnableAction | FollowControllerDisableAction |
FollowControllerKeyPressAction | FollowControllerBackspaceAction;
export type MarkAction =
- MarkStartSetAction | MarkStartJumpAction |
- MarkCancelAction | MarkSetLocalAction | NoopAction;
+ MarkStartSetAction | MarkStartJumpAction | MarkCancelAction | NoopAction;
export type Action =
InputAction |