PeerTube/packages/models/src/import-export/peertube-export-format/comments-export.model.ts

13 lines
196 B
TypeScript

export interface CommentsExportJSON {
comments: {
url: string
text: string
createdAt: string
videoUrl: string
inReplyToCommentUrl?: string
archiveFiles?: never
}[]
}