An AssetSource is a representation of an Asset in a specific format, for example, a video in a certain encoding or an image in a certain resolution.

interface AssetSource {
    contentType?: string;
    dimensions?: AssetDimensions;
    key?: string;
    uri: string;
}

Properties

contentType?: string
dimensions?: AssetDimensions

The width and height of the Asset Source.

key?: string
uri: string