From f14929cb1ca3c79c595fe42b41bb267219cf2701 Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Sun, 1 Jan 2023 15:40:25 +0000 Subject: [PATCH] typedef: add useSessionId to CDPApi.send() --- gluon.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gluon.d.ts b/gluon.d.ts index cf3bb6f..ec74a4b 100644 --- a/gluon.d.ts +++ b/gluon.d.ts @@ -48,7 +48,10 @@ type CDPApi = { method: string, /** Parameters of CDP command. */ - params?: Object + params?: Object, + + /** Send session ID with the command (default true). */ + useSessionId?: Boolean = true ): Promise };