Vinyl
    Preparing search index...

    Interface SourceTrackLoadOptions

    interface SourceTrackLoadOptions {
        config?: Maybe<SourceTrackBaseOptions>;
        srcProvider?: Maybe<(uri: string) => string | Promise<string>>;
        type: "src";
        uri: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Configuration options for the SourceTrack. Will be provided on preload and activate.

    srcProvider?: Maybe<(uri: string) => string | Promise<string>>

    If set, will be called to provide the track src. Otherwise, the uri will be used.

    type: "src"

    The track type, used to map to a track factory.

    uri: string

    The track identifier.