1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 09:49:20 +02:00
Peertube/packages/models/src/feeds/feed-format.enum.ts
2025-04-11 08:15:24 +02:00

15 lines
322 B
TypeScript

export const FeedFormat = {
PODCAST: 'xml',
RSS: 'xml',
ATOM: 'atom',
JSON: 'json'
} as const
export type FeedFormatType = typeof FeedFormat[keyof typeof FeedFormat]
export const FeedType = {
VIDEOS: 'videos',
PODCAST: 'podcast'
} as const
export type FeedType_Type = typeof FeedType[keyof typeof FeedType]