UNPKG

agora-edu-core

Version:

Core APIs for building an online classroom

29 lines (28 loc) 600 B
import { Logger } from 'agora-rte-sdk'; import { EduClassroomStore } from '.'; export declare abstract class EduStoreBase { /** * @internal */ protected readonly logger: Logger; /** * @internal */ protected readonly classroomStore: EduClassroomStore; /** * @internal */ constructor(store: EduClassroomStore); /** * @internal */ protected get api(): import("../../../services/api").EduApiService; /** * @internal */ abstract onInstall(): void; /** * @internal */ abstract onDestroy(): void; }