@iptv/playlist - v1.1.1
    Preparing search index...

    Type Alias M3uPlaylist

    Defines the structure of an M3U playlist, typically used for streaming media channels. An M3U playlist contains a list of channels and optional headers providing additional metadata.

    type M3uPlaylist = {
        channels: M3uChannel[];
        headers?: M3uHeaders;
    }
    Index

    Properties

    Properties

    channels: M3uChannel[]

    Array of M3uChannel objects representing each channel in the playlist.

    headers?: M3uHeaders

    M3uHeaders object containing metadata for the playlist.