An individual Spaced Repetition System (SRS) Stage.

interface WKSpacedRepetitionSystemStage {
    interval: null | number;
    interval_unit:
        | null
        | "days"
        | "hours"
        | "milliseconds"
        | "minutes"
        | "seconds"
        | "weeks";
    position: WKSrsStageNumber;
}

Properties

interval: null | number

The length of time added to the time of review registration, adjusted to the beginning of the hour.

interval_unit:
    | null
    | "days"
    | "hours"
    | "milliseconds"
    | "minutes"
    | "seconds"
    | "weeks"

Unit of time. Can be the following: milliseconds, seconds, minutes, hours, days, and weeks.

The position of the stage within the continuous order.