Documentation
    Preparing search index...

    Interface AudioSource

    An active audio source registered by a napplet.

    const source: AudioSource = {
    windowId: 'win-1',
    nappletClass: 'music-player',
    title: 'Now Playing',
    muted: false,
    };
    interface AudioSource {
        muted: boolean;
        nappletClass: string;
        title: string;
        windowId: string;
    }
    Index

    Properties

    muted: boolean

    Whether this source is currently muted.

    nappletClass: string

    The napplet class/type (e.g., 'music-player').

    title: string

    Human-readable title for the audio source.

    windowId: string

    The napplet window that registered this audio source.