Skip to content

Commit

Permalink
2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxvien authored and Maxvien committed Jul 10, 2020
1 parent 0ad83d5 commit 40854cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ A JavaScript/TypeScript implementation of the [SuperMemo 2](https://super-memory
## Explanation

```
interface SuperMemoItem {
export type SuperMemoItem = {
interval: number;
repetition: number;
efactor: number;
}
};
type SuperMemoGrade = 0 | 1 | 2 | 3 | 4 | 5;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"typescript"
],
"author": "Vien Dinh",
"version": "2.0.2",
"version": "2.0.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/supermemo.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export interface SuperMemoItem {
export type SuperMemoItem = {
interval: number;
repetition: number;
efactor: number;
}
};

export type SuperMemoGrade = 0 | 1 | 2 | 3 | 4 | 5;

Expand Down

0 comments on commit 40854cb

Please sign in to comment.