diff options
author | 2023-05-22 18:50:10 +0530 | |
---|---|---|
committer | 2023-05-22 21:20:10 +0800 | |
commit | e17ed0727ef1acb512c77723a1b641326de8ca84 (patch) | |
tree | b2b7e16eb6fbd3bab52b17940333216fd35d12f4 /packages/astro-rss/src | |
parent | f962348f76cde9a854359777b2d34c8e23206f67 (diff) | |
download | astro-e17ed0727ef1acb512c77723a1b641326de8ca84.tar.gz astro-e17ed0727ef1acb512c77723a1b641326de8ca84.tar.zst astro-e17ed0727ef1acb512c77723a1b641326de8ca84.zip |
feat: :art: export rss feeditem type (#7153)
Diffstat (limited to 'packages/astro-rss/src')
-rw-r--r-- | packages/astro-rss/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro-rss/src/index.ts b/packages/astro-rss/src/index.ts index 2a35bd573..47c7c1db4 100644 --- a/packages/astro-rss/src/index.ts +++ b/packages/astro-rss/src/index.ts @@ -32,7 +32,7 @@ export type RSSOptions = { trailingSlash?: z.infer<typeof rssOptionsValidator>['trailingSlash']; }; -type RSSFeedItem = { +export type RSSFeedItem = { /** Link to item */ link: string; /** Full content of the item. Should be valid HTML */ |