Fix too big line length
This commit is contained in:
parent
7f2cfe3a79
commit
8ea1597fdb
|
@ -27,7 +27,15 @@ export class VideoEdit implements VideoUpdate {
|
||||||
id?: number
|
id?: number
|
||||||
scheduleUpdate?: VideoScheduleUpdate
|
scheduleUpdate?: VideoScheduleUpdate
|
||||||
|
|
||||||
constructor (video?: Video & { tags: string[], commentsEnabled: boolean, downloadEnabled: boolean, support: string, thumbnailUrl: string, previewUrl: string }) {
|
constructor (
|
||||||
|
video?: Video & {
|
||||||
|
tags: string[],
|
||||||
|
commentsEnabled: boolean,
|
||||||
|
downloadEnabled: boolean,
|
||||||
|
support: string,
|
||||||
|
thumbnailUrl: string,
|
||||||
|
previewUrl: string
|
||||||
|
}) {
|
||||||
if (video) {
|
if (video) {
|
||||||
this.id = video.id
|
this.id = video.id
|
||||||
this.uuid = video.uuid
|
this.uuid = video.uuid
|
||||||
|
|
Loading…
Reference in New Issue