chore(docs): mark JSHandle properties as internal (#6126)

This commit is contained in:
Jack Franklin
2020-06-30 15:56:37 +01:00
committed by GitHub
parent 8026ca9514
commit 9f198626f8
7 changed files with 19 additions and 81 deletions

View File

@@ -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,