Skip to main content

renderer-Image

Image

type Image = 
| {
asset_type: "png";
url?: string;
path?: string;
}
| {
asset_type: "jpeg";
url?: string;
path?: string;
}
| {
asset_type: "svg";
url?: string;
path?: string;
resolution?: {
width: u32;
height: u32;
};
}
| {
asset_type: "gif";
url?: string;
path?: string;
}