Audio Loom - v0.2.2
    Preparing search index...

    Interface AudioBufferEntry

    Internal tracking for audio buffer loading state.

    interface AudioBufferEntry {
        key: string;
        group: string;
        path: string;
        buffer: AudioBuffer | null;
        loadState: "pending" | "loading" | "loaded" | "error";
    }
    Index

    Properties

    key: string

    Audio key this buffer belongs to.

    group: string

    Audio group this buffer belongs to.

    path: string

    URL or path to the audio file.

    buffer: AudioBuffer | null

    Decoded audio buffer, or null if not yet loaded.

    loadState: "pending" | "loading" | "loaded" | "error"

    Current loading state.