mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
e89e264a16
This corresponds to Chromium 85.0.4182.0. This roll includes: - Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure https://crrev.com/c/2231445 - [FlexNG] Enable FlexNG by default https://crrev.com/c/2216595 Closes #6151.
26 lines
1.7 KiB
Markdown
26 lines
1.7 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Runtime](./puppeteer.protocol.runtime.md) > [ObjectPreview](./puppeteer.protocol.runtime.objectpreview.md)
|
|
|
|
## Protocol.Runtime.ObjectPreview interface
|
|
|
|
Object containing abbreviated remote object value.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
export interface ObjectPreview
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [description](./puppeteer.protocol.runtime.objectpreview.description.md) | string | String representation of the object. |
|
|
| [entries](./puppeteer.protocol.runtime.objectpreview.entries.md) | [EntryPreview](./puppeteer.protocol.runtime.entrypreview.md)<!-- -->\[\] | List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only. |
|
|
| [overflow](./puppeteer.protocol.runtime.objectpreview.overflow.md) | boolean | True iff some of the properties or entries of the original object did not fit. |
|
|
| [properties](./puppeteer.protocol.runtime.objectpreview.properties.md) | [PropertyPreview](./puppeteer.protocol.runtime.propertypreview.md)<!-- -->\[\] | List of the properties. |
|
|
| [subtype](./puppeteer.protocol.runtime.objectpreview.subtype.md) | ('array' \| 'null' \| 'node' \| 'regexp' \| 'date' \| 'map' \| 'set' \| 'weakmap' \| 'weakset' \| 'iterator' \| 'generator' \| 'error') | Object subtype hint. Specified for <code>object</code> type values only. (ObjectPreviewSubtype enum) |
|
|
| [type](./puppeteer.protocol.runtime.objectpreview.type.md) | ('object' \| 'function' \| 'undefined' \| 'string' \| 'number' \| 'boolean' \| 'symbol' \| 'bigint') | Object type. (ObjectPreviewType enum) |
|
|
|