import { ShopifyVideoSource } from '@daffodil/driver/shopify'
Represents a source for a Shopify hosted video.
interface ShopifyVideoSource {
__typename: "VideoSource"
format: string
height: number
mimeType: string
url: string
width: number
}
__typename "VideoSource" |
|---|
format string |
|---|
The format of the video source. |
height number |
|---|
The height of the video. |
mimeType string |
|---|
The video MIME type. |
url string |
|---|
The URL of the video. |
width number |
|---|
The width of the video. |