nkoehler/mat-video

View on GitHub
projects/mat-video/src/lib/ui/mat-download-button/mat-download-button.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component, OnInit, Input } from "@angular/core";

@Component({
  selector: "mat-download-button",
  templateUrl: "./mat-download-button.component.html",
  styleUrls: ["./mat-download-button.component.scss"]
})
export class MatDownloadButtonComponent {
  @Input() video: HTMLVideoElement;
  @Input() title: string;

  constructor() {}
}