@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
30 lines (29 loc) • 850 B
TypeScript
import { TsxAllowUnknowProperties } from "../";
import { MediaPickerVideo } from "../../models";
export interface IMediaPickerVideo {
/** The video to render*/
video: MediaPickerVideo;
videoStyle?: string | object | object[];
/**
* This is set when saved in html, i.e. the attribute. Should be json of MediaPickerVideo
* */
videodata?: string;
dark?: boolean;
containerClass?: string;
thumbnailOnly?: boolean;
showCaption?: boolean;
inlineMediaNodeDisplayData?: string;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-media-picker-video": TsxAllowUnknowProperties<IMediaPickerVideo>;
}
}
}