mirror of
https://github.com/dralkh/spaceforge.git
synced 2026-07-22 06:45:03 +00:00
8 lines
399 B
TypeScript
8 lines
399 B
TypeScript
import { SpaceforgeSettings } from '../models/settings';
|
|
import { MCQSet } from '../models/mcq';
|
|
import SpaceforgePlugin from '../main';
|
|
|
|
export interface IMCQGenerationService {
|
|
plugin: SpaceforgePlugin; // To allow implementations to access plugin features like settings, notices
|
|
generateMCQs(notePath: string, noteContent: string, settings: SpaceforgeSettings): Promise<MCQSet | null>;
|
|
}
|