17 lines
187 B
Markdown
17 lines
187 B
Markdown
---
|
|
sidebar_label: MouseButton
|
|
---
|
|
|
|
# MouseButton type
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export declare type MouseButton =
|
|
| 'left'
|
|
| 'right'
|
|
| 'middle'
|
|
| 'back'
|
|
| 'forward';
|
|
```
|