mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-21 06:13:48 +00:00
feat(domain): add native-feed detector (Atom/RSS/JSON)
This commit is contained in:
@@ -69,6 +69,13 @@ export interface FeedMetadata {
|
||||
pendingConfirmation?: boolean;
|
||||
}
|
||||
|
||||
// A syndication feed a newsletter advertises about itself (via
|
||||
// <link rel="alternate">), as opposed to the KTN-generated feed.
|
||||
export interface NativeFeed {
|
||||
url: string;
|
||||
type: "rss" | "atom" | "json";
|
||||
}
|
||||
|
||||
// Email metadata interface (summary info for listing)
|
||||
export interface EmailMetadata {
|
||||
key: string;
|
||||
|
||||
Reference in New Issue
Block a user