Interface Sound

interface Sound {
    addedOn: string;
    artist: string;
    color?: string;
    duration: string;
    index: number;
    lastPlayedOn: string;
    playCount: number;
    tag: string;
    title: string;
    url: string;
}

Properties

addedOn: string
artist: string
color?: string
duration: string
index: number
lastPlayedOn: string
playCount: number
tag: string
title: string
url: string