2023-06-12 08:11:43 +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-15 10:48:54 +00:00
abstract removeExposedFunction(name: string): Promise< void > ;
2023-06-12 08:11:43 +00:00
}
```
## Parameters
2024-03-25 13:03:57 +00:00
< table > < thead > < tr > < th >
2023-06-12 08:11:43 +00:00
2024-03-25 13:03:57 +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-12 08:11:43 +00:00
**Returns:**
Promise< void>