mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore(docs): mark JSHandle properties as internal (#6126)
This commit is contained in:
@@ -100,11 +100,26 @@ export function createJSHandle(
|
||||
* @public
|
||||
*/
|
||||
export class JSHandle {
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
_context: ExecutionContext;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
_client: CDPSession;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
_remoteObject: Protocol.Runtime.RemoteObject;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
_disposed = false;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
constructor(
|
||||
context: ExecutionContext,
|
||||
client: CDPSession,
|
||||
|
||||
Reference in New Issue
Block a user