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 `sourceStageArn` is injected by the binding from the bound (source) * stage. */ export interface ListParticipantReplicasRequest extends Omit { } /** * List the replicas of a participant of the bound (source) stage — the * destination stages a participant's media is replicated to and each * replica's state. * * ### Replicating Participants * **Example:** List a participant's replicas * ```typescript * // init * const listParticipantReplicas = yield* IVSRealtime.ListParticipantReplicas(stage); * * // runtime * const { replicas } = yield* listParticipantReplicas({ * participantId: "abcDEF123", * }); * ``` * * @binding */ export interface ListParticipantReplicas extends Binding.Service Effect.Effect<(request: ListParticipantReplicasRequest) => Effect.Effect>> { } export declare const ListParticipantReplicas: ListParticipantReplicas; //# sourceMappingURL=ListParticipantReplicas.d.ts.map