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

    Interface ImpulseResponseEntry

    Represents an impulse response entry for convolution reverb. Follows the same pattern as AudioBufferEntry.

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

    Properties

    key: string

    Unique identifier for this impulse response.

    path: string

    URL or path to the impulse response audio file.

    buffer: AudioBuffer | null

    Decoded audio buffer, or null if not yet loaded.

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

    Current loading state.