nkoehler/mat-video

View on GitHub
projects/mat-video/src/lib/ui/mat-quality-control/mat-quality-control.component.ts

Summary

Maintainability
A
1 hr
Test Coverage
import { Component, Input } from "@angular/core";

@Component({
  selector: "mat-quality-control",
  templateUrl: "./mat-quality-control.component.html",
  styleUrls: ["./mat-quality-control.component.scss"]
})
export class MatQualityControlComponent {
  @Input() video: HTMLVideoElement;

  constructor() {}
}