mcp-decisive
Version:
MCP server for WRAP decision-making framework with structured output
19 lines • 525 B
TypeScript
import { Result } from 'neverthrow';
import { type FileSystemError } from './filesystem.js';
/**
* Reset Storage Effect Layer
*
* Handles deletion of all stored decision-making data.
*/
export type ResetStorageError = {
type: 'file_system_error';
error: FileSystemError;
} | {
type: 'directory_access_error';
message: string;
};
/**
* Delete all decision data files
*/
export declare const resetAllDecisionData: () => Promise<Result<void, ResetStorageError>>;
//# sourceMappingURL=reset-storage.d.ts.map