null_action means doing nothing and taking a screenshot (#2162)

This commit is contained in:
Shuchang Zheng
2025-04-16 00:47:52 -07:00
committed by GitHub
parent c829966936
commit 1386ac4780

View File

@@ -180,6 +180,7 @@ export const ActionTypes = {
KeyPress: "keypress",
Scroll: "scroll",
Move: "move",
NullAction: "null_action",
} as const;
export type ActionType = (typeof ActionTypes)[keyof typeof ActionTypes];
@@ -200,6 +201,7 @@ export const ReadableActionTypes: {
keypress: "Press Keys",
scroll: "Scroll",
move: "Move",
null_action: "Screenshot",
};
export type Option = {