mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-21 01:15:22 -04:00
9 lines
121 B
TypeScript
9 lines
121 B
TypeScript
/**
|
|
* {@link Button} enum represents clickable buttons of a mouse
|
|
*/
|
|
export enum Button {
|
|
LEFT,
|
|
MIDDLE,
|
|
RIGHT,
|
|
}
|