From cc78e9863d022a653dd99f1b55ae475203a7efc1 Mon Sep 17 00:00:00 2001 From: Filipe Date: Tue, 1 Mar 2022 00:00:21 -0300 Subject: [PATCH] add typings for LocalAuth attributes (#1262) --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 166aa40..ca796bf 100644 --- a/index.d.ts +++ b/index.d.ts @@ -358,6 +358,8 @@ declare namespace WAWebJS { * Local directory-based authentication */ export class LocalAuth extends AuthStrategy { + public clientId?: string; + public dataPath?: string; constructor(options?: { clientId?: string, dataPath?: string