PeerTube/packages/models/src/feeds/feed-format.enum.ts

8 lines
157 B
TypeScript

export const FeedFormat = {
RSS: 'xml',
ATOM: 'atom',
JSON: 'json'
} as const
export type FeedFormatType = typeof FeedFormat[keyof typeof FeedFormat]