import type * as ivsrealtime from "@distilled.cloud/aws/ivs-realtime"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Stage } from "./Stage.ts"; /** The `stageArn` is injected by the binding from the bound stage. */ export interface ListStageSessionsRequest extends Omit { } /** * List all sessions (current and past) of the bound stage, most recent * first. * * ### Inspecting Stage Sessions * **Example:** List a stage's sessions * ```typescript * // init * const listStageSessions = yield* IVSRealtime.ListStageSessions(stage); * * // runtime * const { stageSessions } = yield* listStageSessions(); * ``` * * @binding */ export interface ListStageSessions extends Binding.Service Effect.Effect<(request?: ListStageSessionsRequest) => Effect.Effect>> { } export declare const ListStageSessions: ListStageSessions; //# sourceMappingURL=ListStageSessions.d.ts.map