UNPKG

mcp-casual-interview

Version:

MCP server for casual interview preparation workflow management

21 lines 789 B
import { ResponseWorkflowStateType } from './schema.js'; /** * Format progress update message for human consumption */ export declare const formatProgressUpdateMessage: (data: { previousState: ResponseWorkflowStateType; currentState: ResponseWorkflowStateType; nextAction: string; notionUrl?: string; }) => string; /** * Error message templates for progress update operations */ export declare const errorMessages: { invalidTransition: (from: string, to: string) => string; invalidTransitionWithGuidance: (from: string, attempted: string, expectedNext: string) => string; storageError: (message: string) => string; progressUpdateError: (message: string) => string; alreadyCompleted: (step: string) => string; }; //# sourceMappingURL=prompts.d.ts.map