Type alias ArenaImageBlock

ArenaImageBlock: ArenaBaseBlock & {
    class: "Image";
    image: ArenaImage;
    source: {
        provider: {
            name: string;
            url: string;
        } | null;
        title?: string;
        url: string;
    };
}

Type declaration

  • class: "Image"

    (String) The type of block. Will always be "Image"

  • image: ArenaImage
  • source: {
        provider: {
            name: string;
            url: string;
        } | null;
        title?: string;
        url: string;
    }
    • provider: {
          name: string;
          url: string;
      } | null

      (Hash) A hash of more info about the provider name: (String) The name of the source provider url: (String) The hostname of the source provider

    • Optional title?: string
    • url: string

      (String) The url of the source

Generated using TypeDoc