ecspresso
    Preparing search index...

    Interface AudioPluginOptions<Ch, G>

    Configuration options for the audio plugin.

    interface AudioPluginOptions<Ch extends string, G extends string = "audio"> {
        channels: Readonly<Record<Ch, AudioChannelConfig>>;
        phase?: SystemPhase;
        priority?: number;
        systemGroup?: G;
    }

    Type Parameters

    • Ch extends string
    • G extends string = "audio"

    Hierarchy (View Summary)

    Index

    Properties

    channels: Readonly<Record<Ch, AudioChannelConfig>>

    Channel definitions from defineAudioChannels

    phase?: SystemPhase

    Execution phase for the plugin's primary system

    priority?: number

    Priority for the plugin's primary system (default varies per plugin)

    systemGroup?: G

    System group name for all systems registered by this plugin