Skip to main content
Module

x/grammy_conversations/deps.deno.ts>Filter

Conversational interfaces for grammY
Go to Latest
type alias Filter
import { type Filter } from "https://deno.land/x/grammy_conversations@v1.1.1/deps.deno.ts";

This type infers which properties will be present on the given context object provided it matches the given filter query. If the filter query is a union type, the produced context object will be a union of possible combinations, hence allowing you to narrow down manually which of the properties are present.

In some sense, this type computes matchFilter on the type level.

definition: PerformQuery<C, RunQuery<ExpandShortcuts<Q>>>