File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Misc. config for a study StudySessionConfig
3+ */
4+ export type StudySessionConfig = {
5+ likesConfetti : boolean ;
6+ } ;
Original file line number Diff line number Diff line change @@ -125,10 +125,6 @@ type StudyInstance = ReturnType<typeof defineComponent> & {
125125 $refs: StudyRefs ;
126126};
127127
128- export type StudySessionConfig = {
129- likesConfetti: boolean ;
130- };
131-
132128export default defineComponent ({
133129 name: ' StudySession' ,
134130
Original file line number Diff line number Diff line change @@ -23,10 +23,11 @@ export * from './composables/Displayable';
2323
2424/*
2525 Study Session Components
26-
2726*/
2827
28+ export { default as StudySession } from './components/StudySession.vue' ;
2929export { default as StudySessionTimer } from './components/StudySessionTimer.vue' ;
30+ export type { StudySessionConfig } from './components/StudySession.types' ;
3031
3132/*
3233 studentInputs
You can’t perform that action at this time.
0 commit comments