Show card NextDue to the flashcard management UI (#9621)

* Show RiffCard NextDue to the UI

* Show RiffCard NextDue to the UI

* Show card NextDue to the flashcard management UI
This commit is contained in:
debbbbie 2023-11-10 20:21:56 +08:00 committed by GitHub
parent 432634beea
commit 48c354e7de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 30 additions and 5 deletions

View file

@ -903,7 +903,7 @@ interface IBlockTree {
}
interface IBlock {
riffCardReps?: number // 闪卡复习次数
riffCard?: IRiffCard,
depth?: number,
box?: string;
path?: string;
@ -925,6 +925,11 @@ interface IBlock {
ial: IObject
}
interface IRiffCard {
due?: string;
reps?: number; // 闪卡复习次数
}
interface IModels {
editor: import("../editor").Editor [],
graph: import("../layout/dock/Graph").Graph[],