UNPKG

education-module-ai

Version:
12 lines (11 loc) 295 B
/** * Export all database-related functionality */ export { EducationModuleAdapter, initEducationDatabase } from './EducationModuleAdapter'; export declare const educationSqliteTables: string[]; /** * Module adapter interface */ export interface ModuleAdapter { init(): Promise<void>; }