From f30983b2aba5a935ad8499635d990ab98b908f40 Mon Sep 17 00:00:00 2001 From: XiNiHa Date: Mon, 27 May 2024 20:15:12 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=84=EC=9D=BC=EB=9E=9C=EB=93=9C=20?= =?UTF-8?q?=EA=B4=80=EB=A0=A8=20JSX=20attribute=20=ED=83=80=EC=9E=85=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/env.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/env.d.ts b/src/env.d.ts index d300eafdc..2010dac5f 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -1,3 +1,11 @@ /// import "@total-typescript/ts-reset/filter-boolean"; + +declare module "solid-js" { + namespace JSX { + interface IntrinsicAttributes { + "client:idle"?: boolean; + } + } +}