f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
20 lines
257 B
Markdown
20 lines
257 B
Markdown
---
|
|
sidebar_label: JSHandle.dispose
|
|
---
|
|
|
|
# JSHandle.dispose() method
|
|
|
|
Releases the object referenced by the handle for garbage collection.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class JSHandle {
|
|
dispose(): Promise<void>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|