Chocobozzz/PeerTube

View on GitHub
packages/models/src/feeds/feed-format.enum.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const FeedFormat = {
  RSS: 'xml',
  ATOM: 'atom',
  JSON: 'json'
} as const

export type FeedFormatType = typeof FeedFormat[keyof typeof FeedFormat]