import { RequestOptions } from '@telegram-apps/bridge'; import { PromiseOptions } from 'better-promises'; /** * Function with any arguments list and return type. */ export type AnyFn = (...args: any[]) => any; export type RequestOptionsNoCapture = Omit, 'capture'>; export type AsyncOptions = Omit;