2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Target.type
|
|
|
|
---
|
|
|
|
|
|
|
|
# Target.type() method
|
|
|
|
|
|
|
|
Identifies what kind of target this is.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Target {
|
2023-07-21 07:04:14 +00:00
|
|
|
type(): TargetType;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2023-07-21 07:04:14 +00:00
|
|
|
[TargetType](./puppeteer.targettype.md)
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
See [docs](https://developer.chrome.com/extensions/background_pages) for more info about background pages.
|