7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import type { FeedItem } from './feed.types.js';
|
|
|
|
export interface IParser {
|
|
parse(rawXml: string, source: string): Promise<FeedItem[]>;
|
|
supports(contentType: string): boolean;
|
|
}
|