@vestcards/shared 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -47,7 +47,6 @@ export declare interface ICard {
|
|
|
47
47
|
id: string;
|
|
48
48
|
question: string;
|
|
49
49
|
answer: string | null;
|
|
50
|
-
order: number;
|
|
51
50
|
frontImage?: {
|
|
52
51
|
id: string;
|
|
53
52
|
url: string;
|
|
@@ -113,6 +112,8 @@ export declare interface SessionStats {
|
|
|
113
112
|
total: number;
|
|
114
113
|
}
|
|
115
114
|
|
|
115
|
+
export declare type StudyStatus = 'not-started' | 'suspended' | 'has-cards' | 'no-cards';
|
|
116
|
+
|
|
116
117
|
export declare type StudyType = 'ALL' | 'DECK' | 'TOPIC' | 'SUBJECT';
|
|
117
118
|
|
|
118
119
|
export declare type Subject = (typeof SUBJECTS)[number];
|