Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
type alias MultiSessionOptions
import { type MultiSessionOptions } from "https://deno.land/x/grammy@v1.18.0/convenience/session.ts";

Options for session middleware if multi sessions are used. Specify "type": "multi" in the options to use multi sessions.

definition: S extends Record<string, any> ? { type: "multi"; } & MultiSessionOptionsRecord<S, C> : never