ImageSource
type ImageSource = | { type: "imageSourceBytes"; bytes: Uint8Array;} | { type: "imageSourceS3Location"; s3Location: S3Location;} | { type: "imageSourceUrl"; url: string;};Defined in: src/types/media.ts:138
Source for an image (Class version).