Skip to main content
Module

x/grammy/core/client.ts>TransformableApi

The Telegram Bot Framework.
Extremely Popular
Go to Latest
interface TransformableApi
import { type TransformableApi } from "https://deno.land/x/grammy@v1.10.1/core/client.ts";

A transformable API enhances the RawApi type by transformers.

Type Parameters

optional
R extends RawApi = RawApi

Properties

raw: R

Access to the raw API that the tranformers will be installed on.

use: (...transformers: Transformer<R>[]) => this

Can be used to register any number of transformers on the API.

installedTransformers: Transformer<R>[]

Returns a readonly list or the currently installed transformers. The list is sorted by time of installation where index 0 represents the transformer that was installed first.