20 lines
547 B
TypeScript
20 lines
547 B
TypeScript
|
// Copyright: Ankitects Pty Ltd and contributors
|
||
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
|
||
|
export enum CardQueue {
|
||
|
/// due is the order cards are shown in
|
||
|
New = 0,
|
||
|
/// due is a unix timestamp
|
||
|
Learn = 1,
|
||
|
/// due is days since creation date
|
||
|
Review = 2,
|
||
|
DayLearn = 3,
|
||
|
/// due is a unix timestamp.
|
||
|
/// preview cards only placed here when failed.
|
||
|
PreviewRepeat = 4,
|
||
|
/// cards are not due in these states
|
||
|
Suspended = -1,
|
||
|
UserBuried = -2,
|
||
|
SchedBuried = -3,
|
||
|
}
|