1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00

Better typings

This commit is contained in:
Chocobozzz 2018-10-18 14:35:31 +02:00
parent cdf4cb9eaf
commit c199c427d4
No known key found for this signature in database
GPG key ID: 583A612D890159BE
65 changed files with 1606 additions and 150 deletions

View file

@ -8,9 +8,9 @@ import { Component, Input } from '@angular/core'
export class ButtonComponent {
@Input() label = ''
@Input() className: any = undefined
@Input() icon: any = undefined
@Input() title: any = undefined
@Input() className: string = undefined
@Input() icon: string = undefined
@Input() title: string = undefined
getTitle () {
return this.title || this.label