feat: implement feed and validation utilities for smartfeed

This commit is contained in:
2025-10-31 18:27:56 +00:00
parent 05a597f473
commit 6d9538c5d2
4 changed files with 167 additions and 0 deletions

10
ts/plugins.ts Normal file
View File

@@ -0,0 +1,10 @@
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
export { tsclass };
// third party scope
import rssParser from 'rss-parser';
import * as feed from 'feed';
export { rssParser, feed };