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