xylabs/sdk-react

View on GitHub
packages/rich-result/src/jsonld/MediaObject.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { CreativeWork } from './CreativeWork.ts'
import type { Text } from './Text.ts'
import type { URL } from './URL.ts'

interface MediaObject extends CreativeWork {
  contentSize?: Text
  contentUrl?: URL
  height?: unknown
  width?: unknown
}

export type { MediaObject }