UNPKG

stalkee

Version:

a Telegram bot who can send voice messages via inline mode added by admin with sorting them by numbers of uses

9 lines (8 loc) 321 B
import { Markup } from 'telegraf'; import { InlineKeyboardMarkup } from 'typegram'; import { Context } from './context'; declare type Options = { [key: string]: string; }; export declare type MarkupBuilder = (ctx: Context, options?: Options) => Markup<InlineKeyboardMarkup> & InlineKeyboardMarkup; export {};