Documentation
    Preparing search index...

    Type Alias Draw

    Useful for synchronizing visuals and audio events.

    type Draw = {
        cancel: (time: Time) => void;
        schedule: (callback: () => void, time: Time) => void;
    }
    Index
    cancel: (time: Time) => void

    Cancels future events.

    schedule: (callback: () => void, time: Time) => void

    Schedules the passed callback at the passed time.