UNPKG

basics-courses-mcp

Version:

Interactive programming courses from Basics - MCP server for Cursor

13 lines 446 B
export interface CourseState { currentCourse?: string; currentModule?: string; currentLesson?: string; currentStep: number; currentStepId?: string; status?: number; userEmail?: string; } export declare function getLocalState(): Promise<CourseState>; export declare function saveLocalState(state: CourseState): Promise<void>; export declare function clearLocalState(): Promise<void>; //# sourceMappingURL=state.d.ts.map