typedef: add useSessionId to CDPApi.send()

This commit is contained in:
CanadaHonk 2023-01-01 15:40:25 +00:00
parent cd150331f3
commit f14929cb1c

5
gluon.d.ts vendored
View File

@ -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<any>
};