From 45fc3cf9fa3a14940d3bc825af17bb87bd3125ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=98=8E?= Date: Wed, 20 Jul 2022 21:03:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=B6=E8=BF=9F=E4=BB=BB=E5=8A=A1=E8=B0=83?= =?UTF-8?q?=E5=BA=A6=E6=96=B0=E5=A2=9E=E5=8F=82=E6=95=B0=E6=90=BA=E5=B8=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 陈明 --- api/@ohos.workScheduler.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api/@ohos.workScheduler.d.ts b/api/@ohos.workScheduler.d.ts index 74ea4e9740..1b407dccb6 100644 --- a/api/@ohos.workScheduler.d.ts +++ b/api/@ohos.workScheduler.d.ts @@ -92,6 +92,11 @@ declare namespace workScheduler { * The idle wait time based on which the work is triggered. */ idleWaitTime?: number; + + /** + * The parameters of the work. The value is only supported basic type(Number, String, Boolean). + */ + parameters?: {[key: string]: any}; } /** -- Gitee