export interface MicrosoftStreamModel {
    type?: string;
    version?: string;
    title?: string;
    provider_name?: string;
    provider_url?: string;
    embed_url?: string;
    html?: string;
    width?: number;
    height?: number;
    thumbnail_url?: string;
}
export interface MicrosoftStreamParamsModel {
    apiUrl: string;
    videoUrl: string;
    autoPlay?: boolean;
    responsive?: boolean;
    showInfo?: boolean;
    width?: number;
    height?: number;
    startTime?: number;
}
