stalkee
Version:
a Telegram bot who can send voice messages via inline mode added by admin with sorting them by numbers of uses
22 lines (21 loc) • 411 B
TypeScript
import { LaunchOptions } from '../types';
interface IBot {
token: string;
admins: number[];
options: LaunchOptions;
locales: string[];
default_locale: string;
}
interface IDB {
uri: string;
}
interface ILimits {
max_result_size: number;
}
declare class Config {
bot: IBot;
db: IDB;
limits: ILimits;
}
declare const config: Config;
export { config };