/
Dante
/
node-core
Обзор
Документация
Войти
/
Dante
/
node-core
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/grammy/out/platform.node.d.ts
16 строк
501 B
Александр Данилюк
add
24 сен 2024, 12:59
24 сен 2024, 12:59
9eaeea8
Код
Авторство
О чём код?
import { Agent as HttpAgent } from "http"; import { Agent as HttpsAgent } from "https"; import { Readable } from "stream"; export { debug } from "debug"; export declare const itrToStream: (itr: AsyncIterable<Uint8Array>) => Readable; export declare function baseFetchConfig(apiRoot: string): { compress: boolean; agent: HttpsAgent; } | { agent: HttpAgent; compress?: undefined; } | { compress?: undefined; agent?: undefined; }; export declare const defaultAdapter = "express";