feed-format.enum.ts 75 B

12345
  1. export enum FeedFormat {
  2. RSS = 'xml',
  3. ATOM = 'atom',
  4. JSON = 'json'
  5. }