TinyShade
    Preparing search index...

    Interface IAudioPlugin

    Interface for audio plugin implementations. Provides methods and properties to control audio playback and track time.

    IAudioPlugin

    getTime - Returns the current playback time in seconds.

    The current playback time.

    play - Starts or resumes audio playback.

    interface IAudioPlugin {
        isPlaying: boolean;
        getTime(): number;
        play(): void;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    isPlaying: boolean

    Indicates whether audio is currently playing.

    Methods