From 81512ec07f878f519f37465c764f651672518f2d Mon Sep 17 00:00:00 2001 From: Gautam Panchal <86514804+gautampanchal94@users.noreply.github.com> Date: Tue, 16 May 2023 10:44:27 +0530 Subject: [PATCH] Add `cid` options for set method. --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index fb4e8a4..1cfe04f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -37,7 +37,8 @@ declare module 'tuyapi' { interface SingleSetOptions { dps: number; - set: string|number|boolean + set: string|number|boolean; + cid?: string; multiple?: boolean; shouldWaitForResponse?: boolean; }