Interface BaseImage

interface BaseImage {
    height: number;
    id: string;
    theme: "light" | "dark";
    url: string;
    width: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

height: number

Image height

id: string
theme: "light" | "dark"
url: string

Image url

width: number

Image width

Generated using TypeDoc