Type Alias Track<type>

Track<type>: type extends "SoundCloud"
    ? SoundCloudTrackInfo
    : type extends "LocalFile"
        ? LocalFileTrackInfo
        : type extends "Url"
            ? UrlTrackInfo
            : type extends "Youtube"
                ? YoutubeTrackInfo
                : SpotifyTrackInfo

Type Parameters