Skip to content

@lands.io/mod-sdk / ModHudV1MediaVideo

Interface: ModHudV1MediaVideo

Table of contents

Properties

Properties

label

Optional label: string


src

src: string


topLeftLabel

Optional topLeftLabel: string


topRightLabel

Optional topRightLabel: string


type

type: "video"


Source Code

View full implementation
export interface ModHudV1MediaVideo {
  type: 'video';
  src: string;
  label?: string;
  topLeftLabel?: string;
  topRightLabel?: string;
}