Skip to content

Commit

Permalink
chore: update type deps after changes to the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf committed Feb 3, 2023
1 parent 4d12d20 commit a289ea2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"contribs": "all-contributors"
},
"dependencies": {
"@grammyjs/types": "^2.12.0",
"@grammyjs/types": "^2.12.1",
"abort-controller": "^3.0.0",
"debug": "^4.3.4",
"node-fetch": "^2.6.7"
Expand Down
4 changes: 2 additions & 2 deletions src/types.deno.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// === Needed imports
import { basename } from "https://deno.land/std@0.176.0/path/mod.ts";
import { iterateReader } from "https://deno.land/std@0.176.0/streams/mod.ts";
import { type InputFileProxy } from "https://esm.sh/@grammyjs/types@2.12.0";
import { type InputFileProxy } from "https://esm.sh/@grammyjs/types@2.12.1";
import { debug as d, isDeno, toRaw } from "./platform.deno.ts";

const debug = d("grammy:warn");

// === Export all API types
export * from "https://esm.sh/@grammyjs/types@2.12.0";
export * from "https://esm.sh/@grammyjs/types@2.12.1";

/** Something that looks like a URL. */
interface URLLike {
Expand Down
4 changes: 2 additions & 2 deletions src/types.web.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// === Needed imports
import { basename } from "https://deno.land/std@0.176.0/path/mod.ts";
import { type InputFileProxy } from "https://esm.sh/@grammyjs/types@2.12.0";
import { type InputFileProxy } from "https://esm.sh/@grammyjs/types@2.12.1";
import { toRaw } from "./platform.deno.ts";

// === Export all API types
export * from "https://esm.sh/@grammyjs/types@2.12.0";
export * from "https://esm.sh/@grammyjs/types@2.12.1";

/** Something that looks like a URL. */
interface URLLike {
Expand Down

0 comments on commit a289ea2

Please sign in to comment.