UNPKG

@defikitdotnet/education-module-ai

Version:
16 lines (15 loc) 491 B
import { SqliteAdapter } from "../database/SqliteAdapter"; interface TestUserDetails { name: string; email: string; password: string; } /** * Create test student accounts */ export declare function createTestStudentAccounts(dbAdapter: SqliteAdapter, accounts?: TestUserDetails[]): Promise<string[]>; /** * Create test teacher accounts */ export declare function createTestTeacherAccounts(dbAdapter: SqliteAdapter, accounts?: TestUserDetails[]): Promise<string[]>; export {};