From 554901daee2c4e981443594ff6b60967f3c00578 Mon Sep 17 00:00:00 2001 From: hengstchon Date: Thu, 3 Oct 2024 17:53:06 +0200 Subject: [PATCH] fix: eld module --- app/global.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/global.d.ts b/app/global.d.ts index 897871fec..bcb86663a 100644 --- a/app/global.d.ts +++ b/app/global.d.ts @@ -41,3 +41,9 @@ declare interface Window { }; }; } + +declare module "eld" { + export const eld: { + detect: (text: string) => { language: string }; + }; +}