ファイル
nizika_video/packages/models/src/feeds/feed-format.enum.ts
T
2024-07-15 09:14:04 +09:00

8 行
157 B
TypeScript

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