Skip to main content

Media

Overview

Media is a discriminated union of possible media assets. Depending on its type, it can represent an image, a video, or a color swatch. This design allows the application to render various media consistently with the correct data.

Attributes

type

type: literal = 'image' | 'video' | 'color'

Discriminant for the media type.

image

type: ImageMedia

Details specific to image media.

video

type: VideoMedia

Details specific to video media.

color

type: ColorMedia

Details specific to color media.