nkoehler/mat-video

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

Summary

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

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

  constructor() {}
}