UNPKG

agora-edu-core

Version:

Core APIs for building an online classroom

38 lines (34 loc) 521 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EduStoreBase = void 0; class EduStoreBase { /** * @internal */ constructor(store) { /** * @internal */ this.logger = void 0; /** * @internal */ this.classroomStore = void 0; this.classroomStore = store; } /** * @internal */ get api() { return this.classroomStore.api; } /** * @internal */ /** * @internal */ } exports.EduStoreBase = EduStoreBase;