File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 33export * from './types' ;
44export * from './interfaces' ;
55export * from './types-legacy' ;
6+ export * from './Loggable' ;
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import pouch from 'pouchdb-browser';
22import { ENV } from '@vue-skuilder/common' ;
33import { pouchDBincludeCredentialsConfig , getStartAndEndKeys } from '.' ;
44import { getCourseList , removeCourse } from './courseDB' ;
5- import TeacherClassroomDB , { ClassroomLookupDB } from './classroomDB' ;
6- import { PouchError } from '@ /types/pouchdb ' ;
5+ import { TeacherClassroomDB , ClassroomLookupDB } from './classroomDB' ;
6+ import { PouchError } from '. /types' ;
77
8- export default class AdminDB {
9- private usersDB : PouchDB . Database ;
8+ export class AdminDB {
9+ private usersDB ! : PouchDB . Database ;
1010
1111 private constructor ( ) { }
1212
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ export class StudentClassroomDB extends ClassroomDBBase implements StudyContentS
212212/**
213213 * Interface for managing a classroom.
214214 */
215- export default class TeacherClassroomDB extends ClassroomDBBase {
215+ export class TeacherClassroomDB extends ClassroomDBBase {
216216 private _stuDb ! : PouchDB . Database ;
217217
218218 private constructor ( classID : string ) {
Original file line number Diff line number Diff line change @@ -235,3 +235,4 @@ export * from './courseDB';
235235export * from './courseAPI' ;
236236export * from './classroomDB' ;
237237export * from './contentSource' ;
238+ export * from './adminDB' ;
You can’t perform that action at this time.
0 commit comments