UNPKG

grammy-edit-or-reply

Version:

Exports utilities for grammy to edit a message or reply to a message based on the context

7 lines (6 loc) 273 B
import { Context, MiddlewareFn } from 'grammy'; import { EditOrReplyFlavor } from './types'; /** * Registers editOrReply as part of the context for simpler usage. */ export declare function editOrReplyMiddleware<C extends Context>(): MiddlewareFn<C & EditOrReplyFlavor>;