From 9c8bb0d9ae8e3445f1ba2c8643be5f4fba95886e Mon Sep 17 00:00:00 2001 From: Kravets <57632712+kravetsone@users.noreply.github.com> Date: Thu, 18 Jul 2024 18:32:42 +0300 Subject: [PATCH] chore: fix import --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index e6d3919..3600f43 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -4,7 +4,7 @@ import type { TelegramAPIResponse, TelegramUpdate, } from "@gramio/types"; -import type { Telegram } from "."; +import type { Telegram } from "./index"; export type APIMethodRawResponse = { [APIMethod in keyof APIMethods]: APIMethodParams extends undefined