Closed DrAlta closed 7 months ago
The ts-fsrs package has a detailed documentation: https://github.com/open-spaced-repetition/ts-fsrs?tab=readme-ov-file#basic-use
3. Scheduling with FSRS:
The core functionality lies in the fsrs function. When invoked, it returns a collection of cards scheduled based on different potential user ratings:```
code uses the `FSRS()` function instead of `fsrs()`
Because ts-fsrs has fsrs function:
export const fsrs = (params?: Partial<FSRSParameters>) => {
return new FSRS(params || {});
};
How does one use this? There is no documentation and no comments. I tried looking at the other implementation of FSRS but they are all in the same state.