From 2b11009a2429b3950c843b0b1454120b99b222f7 Mon Sep 17 00:00:00 2001 From: jiangkuaixue Date: Mon, 18 Apr 2022 13:50:40 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9cookie=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E5=80=BC=20Signed-off-by:=20jiangkuaixue=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/@internal/component/ets/web.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@internal/component/ets/web.d.ts b/api/@internal/component/ets/web.d.ts index 931e7637d2..8a36a11c3f 100755 --- a/api/@internal/component/ets/web.d.ts +++ b/api/@internal/component/ets/web.d.ts @@ -560,13 +560,13 @@ declare class WebCookie { * Sets the cookie. * @since 8 */ - setCookie(url: string, value: string); + setCookie(url: string, value: string): boolean; /** * Saves the cookies. * @since 8 */ - saveCookieSync(); + saveCookieSync(): boolean; } /** -- Gitee