Skip to content

Commit

Permalink
fix: add missed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv committed Nov 17, 2022
1 parent 0d4aed6 commit bd40a6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/client/abstract_telegram_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { LogLevel } from "../extensions/logger.ts";
import { TotalList } from "../helpers.ts";
import { DirectDownloadIter } from "./downloads.ts";
import { TelegramBaseClient, TelegramClientParams } from "./base_client.ts";
import { Buffer } from "../../deps.ts";

export abstract class AbstractTelegramClient extends TelegramBaseClient {
constructor(
Expand Down
1 change: 1 addition & 0 deletions src/client/telegram_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import { LogLevel } from "../extensions/logger.ts";
import { AbstractTelegramClient } from "./abstract_telegram_client.ts";
import { TotalList } from "../helpers.ts";
import * as types from "./types.ts";
import { Buffer } from "../../deps.ts";

export class TelegramClient extends TelegramBaseClient
implements AbstractTelegramClient {
Expand Down
1 change: 1 addition & 0 deletions src/client/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
ProgressCallback,
} from "../define.d.ts";
import { CustomFile } from "../classes.ts";
import { Buffer } from "../../deps.ts";

export interface ParseInterface {
parse: (message: string) => [string, Api.TypeMessageEntity[]];
Expand Down

0 comments on commit bd40a6c

Please sign in to comment.