UNPKG

mcp-decisive

Version:

MCP server for WRAP decision-making framework with structured output

12 lines 458 B
import { Result } from 'neverthrow'; import type { OptionList } from '../domain/term/option.js'; import { type FileSystemError } from './filesystem.js'; /** * Save options to storage */ export declare const saveOptions: (optionList: OptionList) => Promise<Result<void, FileSystemError>>; /** * Load options from storage */ export declare const loadOptions: () => Promise<Result<OptionList, FileSystemError>>; //# sourceMappingURL=options-storage.d.ts.map