From 4663f21848a059a05a250a169262f5650226a1f3 Mon Sep 17 00:00:00 2001 From: ishiko Date: Sat, 9 Nov 2024 21:53:01 +0800 Subject: [PATCH] Fix/export the `FSRSHistory` and `FSRSReview` typo (#135) * Fix/export the `FSRSHistory` and `FSRSReview` typo * bump version to 4.4.3 --- package.json | 2 +- src/fsrs/default.ts | 2 +- src/fsrs/index.ts | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f7ceb487..ce277a60 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/fsrs/default.ts b/src/fsrs/default.ts index 60a2fe62..725acb93 100644 --- a/src/fsrs/default.ts +++ b/src/fsrs/default.ts @@ -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 diff --git a/src/fsrs/index.ts b/src/fsrs/index.ts index ece32441..62ae0a24 100644 --- a/src/fsrs/index.ts +++ b/src/fsrs/index.ts @@ -16,6 +16,8 @@ export type { CardInput, ReviewLogInput, DateInput, + FSRSReview, + FSRSHistory, } from './models' export { State, Rating } from './models'