From cd50be3ba91731bc8b1bfc961aa9f119a51d28f4 Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Sun, 21 May 2023 07:17:09 +0200 Subject: [PATCH] fix(docs): playwright - setCookies types (#3627) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index da83dbfa9..3bafed234 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -12,7 +12,7 @@ declare namespace CodeceptJS { type Cookie = { name: string; - value: string; + value: string | boolean; domain?: string, path?: string, };