Skip to content

textmode.export.js / GIFExportProgress

Type Alias: GIFExportProgress

ts
type GIFExportProgress = object;

Progress information emitted during the GIF export process.

Properties

state

ts
state: "idle" | "recording" | "encoding" | "completed" | "error";

Current state of the recording process.


frameIndex?

ts
optional frameIndex: number;

Number of frames that have been recorded so far.


totalFrames?

ts
optional totalFrames: number;

Total number of frames planned for the recording.


message?

ts
optional message: string;

Optional status message for UI consumption.