16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
import { Download } from '../models/download.model';
|
|
|
|
@Component({
|
|
selector: '[app-torrent-download]',
|
|
templateUrl: './torrent-download.component.html',
|
|
styleUrls: ['./torrent-download.component.scss'],
|
|
})
|
|
export class TorrentDownloadComponent implements OnInit {
|
|
@Input()
|
|
public download: Download;
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|