Typescript SDK Type Docs
    Preparing search index...

    Interface AssetSource

    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;
    }
    Index

    Properties

    contentType?: string
    dimensions?: AssetDimensions

    The width and height of the Asset Source.

    key?: string
    uri: string