]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/angular/link.component.ts
Fix audio out of synced on studio cut
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / angular / link.component.ts
CommitLineData
9df52d66 1import { Component, Input } from '@angular/core'
37a44fc9
C
2
3@Component({
4 selector: 'my-link',
5 styleUrls: [ './link.component.scss' ],
6 templateUrl: './link.component.html'
7})
8export class LinkComponent {
d4a8e7a6 9 @Input() internalLink?: string | any[]
37a44fc9
C
10
11 @Input() href?: string
12 @Input() target?: string
13
14 @Input() title?: string
15
16 @Input() tabindex: string | number
17}