aboutsummaryrefslogblamecommitdiffhomepage
path: root/packages/models/src/feeds/feed-format.enum.ts
blob: 71f2f6c15f2437810db8d2bce7960d3f19b617b9 (plain) (tree)
1
2
3
4
5
6
7






                                                                       
export const FeedFormat = {
  RSS: 'xml',
  ATOM: 'atom',
  JSON: 'json'
} as const

export type FeedFormatType = typeof FeedFormat[keyof typeof FeedFormat]