Loom Engine - v3.1.1
    Preparing search index...

    Interface SubtitleQueueOptions

    interface SubtitleQueueOptions {
        maxConcurrent?: number;
        onPush?: (line: SubtitleSnapshot) => void;
        onRemoved?: (
            line: SubtitleSnapshot,
            reason: "cancelled" | "expired" | "cleared",
        ) => void;
    }
    Index

    Properties

    maxConcurrent?: number
    onPush?: (line: SubtitleSnapshot) => void
    onRemoved?: (
        line: SubtitleSnapshot,
        reason: "cancelled" | "expired" | "cleared",
    ) => void