mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
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';
|
|
```
|