Skip to content

Commit

Permalink
Export FeedEntry in mod.ts (#62)
Browse files Browse the repository at this point in the history
* Export FeedEntry in mod.ts

To allow importing of the type for use in Typescript projects

* Bump jsr version to 1.1.1

for new version release
  • Loading branch information
brettchalupa committed Jun 12, 2024
1 parent d341fc5 commit 6631b55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jsr.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@mikaelporttila/rss",
"version": "1.1.0",
"version": "1.1.1",
"exports": "./mod.ts"
}
}
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type { Atom } from "./src/types/atom.ts";
export type { DeserializationResult } from "./src/types/deserialization_result.ts";
export type { Feed } from "./src/types/feed.ts";
export type { Feed, FeedEntry } from "./src/types/feed.ts";
export type { JsonFeed } from "./src/types/json_feed.ts";
export type { RSS1 } from "./src/types/rss1.ts";
export type { RSS2 } from "./src/types/rss2.ts";
Expand Down

0 comments on commit 6631b55

Please sign in to comment.