/**
 * Track URLs
 *
 * @description A collection of track `src` URLs identified by its language code.
 * @interface TrackURL
 * @export
 */
export default interface TrackURL {
    [code: string]: string;
}
