feat(smartfeed): Implement Smartfeed core: add feed validation, parsing, exporting and comprehensive tests

This commit is contained in:
2025-10-31 19:17:04 +00:00
parent 6d9538c5d2
commit c27a46ac62
15 changed files with 9258 additions and 57 deletions

View File

@@ -1,2 +1,16 @@
export * from './smartfeed.classes.smartfeed.js';
export * from './smartfeed.classes.feed.js';
// Export classes
export * from './classes.smartfeed.js';
export * from './classes.feed.js';
export * from './classes.podcast.js';
// Ensure interfaces are explicitly exported
export type { IFeedOptions, IFeedItem } from './classes.feed.js';
export type {
IPodcastFeedOptions,
IPodcastItem,
IPodcastOwner,
IPodcastPerson,
IPodcastChapter,
IPodcastTranscript,
IPodcastFunding,
} from './classes.podcast.js';