Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
nameImageContent
Code Block
languagetypescript
interface ImageContent extends ContentType {
    type: 'image';
    image: {
        url: string;
        height?: number;
        width?: number;
        altText?: string;
        title?: string;
    };
    link?: {
        url: string;
        target?: string;
    };
}

Popular Queries Content

...