@emmahyde/thinking-patterns
Version:
MCP server combining systematic thinking, mental models, debugging approaches, and stochastic algorithms for comprehensive cognitive pattern support
16 lines (15 loc) • 356 B
TypeScript
/**
* Vitest test setup file
* Configures global test environment settings
*/
declare module 'vitest' {
interface Assertion<T = any> {
toBeValidThoughtData(): T;
toHaveValidBoxFormat(): T;
}
interface AsymmetricMatchersContaining {
toBeValidThoughtData(): any;
toHaveValidBoxFormat(): any;
}
}
export {};