Interface SanityImageUrlParts

interface SanityImageUrlParts {
    assetId: string;
    dataset: string;
    extension: string;
    height: number;
    projectId: string;
    type: "image";
    vanityFilename?: string;
    width: number;
}

Hierarchy (view full)

Properties

assetId: string
dataset: string
extension: string
height: number
projectId: string
type: "image"
vanityFilename?: string
width: number