Skip to content

Commit

Permalink
Fix/export the FSRSHistory and FSRSReview typo (#135)
Browse files Browse the repository at this point in the history
* Fix/export the `FSRSHistory` and `FSRSReview` typo

* bump version to 4.4.3
  • Loading branch information
ishiko732 authored Nov 9, 2024
1 parent 2adce32 commit 4663f21
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-fsrs",
"version": "4.4.2",
"version": "4.4.3",
"description": "ts-fsrs is a versatile package based on TypeScript that supports ES modules, CommonJS, and UMD. It implements the Free Spaced Repetition Scheduler (FSRS) algorithm, enabling developers to integrate FSRS into their flashcard applications to enhance the user learning experience.",
"main": "dist/index.cjs",
"umd": "dist/index.umd.js",
Expand Down
2 changes: 1 addition & 1 deletion src/fsrs/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const default_w = [
export const default_enable_fuzz = false
export const default_enable_short_term = true

export const FSRSVersion: string = 'v4.4.2 using FSRS V5.0'
export const FSRSVersion: string = 'v4.4.3 using FSRS V5.0'

export const generatorParameters = (
props?: Partial<FSRSParameters>
Expand Down
2 changes: 2 additions & 0 deletions src/fsrs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ export type {
CardInput,
ReviewLogInput,
DateInput,
FSRSReview,
FSRSHistory,
} from './models'
export { State, Rating } from './models'

Expand Down

0 comments on commit 4663f21

Please sign in to comment.