@vendasta/store
Version:
Components and data for Store
27 lines (26 loc) • 934 B
TypeScript
import { OnInit } from '@angular/core';
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
import * as i0 from "@angular/core";
export declare class VideosComponent implements OnInit {
private sanitizer;
constructor(sanitizer: DomSanitizer);
videos: string[];
videoTOs: VideoTO[];
ngOnInit(): void;
parseWistiaVideo(url: string): Video;
parseVideo(url: string): Video;
createVideo(url: string): VideoTO;
static ɵfac: i0.ɵɵFactoryDeclaration<VideosComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<VideosComponent, "app-videos", never, { "videos": "videos"; }, {}, never, never>;
}
export declare class VideoTO {
videoUrl: string;
videoType: string;
videoId: string;
safeUrl: SafeResourceUrl;
constructor(url: string, type: string, id: string, sanitizer: DomSanitizer);
}
export declare class Video {
type: string;
id: string;
}