PeerTube/client/src/app/shared/video/syndication.model.ts

8 lines
168 B
TypeScript
Raw Normal View History

2018-10-18 14:35:31 +02:00
import { FeedFormat } from '../../../../../shared/models/feeds/feed-format.enum'
export interface Syndication {
format: FeedFormat,
label: string,
url: string
2018-10-18 14:58:11 +02:00
}