Skip to content

Packages  ›  trotsky  ›  StepListUnmute

StepListUnmute class

Represents a step that performs a list unmute operation using the Bluesky API. Unmuting a list allows content from users on that list to appear again.

Signature:

typescript
export declare class StepListUnmute<P = StepList, C extends StepListOutput = StepListOutput, O = null> extends Step<P, C, O>

Extends: Step<P, C, O>

Example

Unmute a specific list:

ts
await Trotsky.init(agent)
  .list("at://did:plc:example/app.bsky.graph.list/listid")
  .unmute()
  .run()

Methods

Method

Modifiers

Description

apply()

Applies the step by performing a list unmute operation. Requires the context to provide the uri of the list to unmute.