Skip to content

Topol Video Block

ts
interface TopolVideoBlock extends TopolBlock {
  tagName: "mj-image";
  isVideo: true;
  attributes: {
    src: string;
    alt: string;
    padding: string;
    width: string;
    href: string;
    containerWidth: number;
    videoSrc?: string;
    "css-class"?: "hide_on_mobile" | "hide_on_desktop";
  };
}