Image
Info
Schema versions
Schema v2
type SwarmImage = {
/** Image aspect ratio (width / height) */
aspectRatio: number
/** Blurhash value */
blurhash: string
/** Sources of image in different resolutions */
sources: Array<{
/** Image scaled width */
width: number
/** Image type */
type: "jpeg" | "png" | "webp" | "avif"
/** Image path */
path: string
}>
}example:
Schema v1
sources field example
Last updated