Skip to content

ImageSourceData

type ImageSourceData =
| {
bytes: Uint8Array;
}
| {
s3Location: S3LocationData;
}
| {
url: string;
};

Defined in: src/types/media.ts:130

Source for an image (Data version). Supports multiple formats for different providers.