-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f94ba7b
commit 997a1f4
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,13 @@ import { | |
type InputMediaVideo as InputMediaVideoF, | ||
type InputSticker as InputStickerF, | ||
type Opts as OptsF, | ||
} from "https://deno.land/x/[email protected].1/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/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/[email protected].1/mod.ts"; | ||
export * from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
/** A value, or a potentially async function supplying that value */ | ||
type MaybeSupplier<T> = T | (() => T | Promise<T>); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,10 @@ import { | |
type InputMediaVideo as InputMediaVideoF, | ||
type InputSticker as InputStickerF, | ||
type Opts as OptsF, | ||
} from "https://deno.land/x/[email protected].1/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
// === Export all API types | ||
export * from "https://deno.land/x/[email protected].1/mod.ts"; | ||
export * from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
/** Something that looks like a URL. */ | ||
interface URLLike { | ||
|