@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
32 lines (31 loc) • 718 B
TypeScript
export declare class MediaflowBaseType {
static Image: string;
static Video: string;
static ExternalVideo: string;
}
export interface MediaflowInformation {
basetype?: string;
filename?: string;
filetype?: string;
id: number;
mediaId: string;
}
export interface MediaFlowImage extends MediaflowInformation {
height: number;
name: string;
photographer: string;
url: string;
width: number;
}
export interface MediaFlowVideo extends MediaflowInformation {
autoPlay: boolean;
embedCode: any;
embedMethod: string;
startTime: string;
}
export interface MediaflowEventData {
id: number;
name: string;
mediaId?: string;
isSearch?: boolean;
}