PeerTube/packages/models/src/import-export/peertube-export-format/comments-export.model.ts
2024-02-21 13:49:08 +01:00

13 lines
196 B
TypeScript

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