mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
15 lines
322 B
TypeScript
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]
|