From 3197d95f1122f898173f9299df86f62c897b96be Mon Sep 17 00:00:00 2001 From: KnorpelSenf Date: Tue, 2 Apr 2024 00:34:06 +0200 Subject: [PATCH] build: update types dep --- package.json | 2 +- src/types.deno.ts | 4 ++-- src/types.web.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index ae66dcb4..1a964984 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "backport": "deno2node tsconfig.json" }, "dependencies": { - "@grammyjs/types": "3.6.0", + "@grammyjs/types": "3.6.1", "abort-controller": "^3.0.0", "debug": "^4.3.4", "node-fetch": "^2.7.0" diff --git a/src/types.deno.ts b/src/types.deno.ts index f7e62062..6de370eb 100644 --- a/src/types.deno.ts +++ b/src/types.deno.ts @@ -11,13 +11,13 @@ import { type InputMediaVideo as InputMediaVideoF, type InputSticker as InputStickerF, type Opts as OptsF, -} from "https://deno.land/x/grammy_types@v3.6.0/mod.ts"; +} from "https://deno.land/x/grammy_types@v3.6.1/mod.ts"; import { debug as d, isDeno } from "./platform.deno.ts"; const debug = d("grammy:warn"); // === Export all API types -export * from "https://deno.land/x/grammy_types@v3.6.0/mod.ts"; +export * from "https://deno.land/x/grammy_types@v3.6.1/mod.ts"; /** A value, or a potentially async function supplying that value */ type MaybeSupplier = T | (() => T | Promise); diff --git a/src/types.web.ts b/src/types.web.ts index 6738a7c5..13a28ac5 100644 --- a/src/types.web.ts +++ b/src/types.web.ts @@ -10,10 +10,10 @@ import { type InputMediaVideo as InputMediaVideoF, type InputSticker as InputStickerF, type Opts as OptsF, -} from "https://deno.land/x/grammy_types@v3.6.0/mod.ts"; +} from "https://deno.land/x/grammy_types@v3.6.1/mod.ts"; // === Export all API types -export * from "https://deno.land/x/grammy_types@v3.6.0/mod.ts"; +export * from "https://deno.land/x/grammy_types@v3.6.1/mod.ts"; /** Something that looks like a URL. */ interface URLLike {