interface Sound {
    asset: Asset;
    assetId: string;
    dataFormat: "mp3" | "wav";
    format: "";
    md5: string;
    name: string;
    rate: number;
    sampleCount: number;
    soundId: string;
}

Hierarchy (View Summary)

Properties

asset: Asset
assetId: string

The md5 of this asset.

dataFormat: "mp3" | "wav"
format: ""
md5: string

The md5 + file extension of this asset.

name: string
rate: number
sampleCount: number
soundId: string