2023-06-02 12:08:36 +00:00
---
sidebar_label: Page.removeExposedFunction
---
# Page.removeExposedFunction() method
The method removes a previously added function via $[Page.exposeFunction()](./puppeteer.page.exposefunction.md) called `name` from the page's `window` object.
#### Signature:
```typescript
class Page {
2023-11-09 12:57:33 +00:00
abstract removeExposedFunction(name: string): Promise< void > ;
2023-06-02 12:08:36 +00:00
}
```
## Parameters
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
2023-06-02 12:08:36 +00:00
2024-03-20 15:03:14 +00:00
Parameter
< / th > < th >
Type
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
name
< / td > < td >
string
< / td > < td >
< / td > < / tr >
< / tbody > < / table >
2023-06-02 12:08:36 +00:00
**Returns:**
Promise< void>