From 7a04d7a26290a270af8c83c69f821230d4484016 Mon Sep 17 00:00:00 2001 From: cbrunie Date: Thu, 9 Jun 2022 14:28:35 +0200 Subject: [PATCH] feat: remove formType parameter for attachForm --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 990f1606..8685302d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -38,7 +38,7 @@ declare interface KR { /** * @summary Attach a form to the given selector. */ - attachForm: (formSelector: string, formType?: FormType) => Promise<{ KR: KR, result: {formId: string} }>; + attachForm: (formSelector: string) => Promise<{ KR: KR, result: {formId: string} }>; /** * @summary Show form. */