/** * Test method definitions for testing * * Provides sample oMethod definitions for testing tools */ import type { oMethod } from '@olane/o-protocol'; /** * Simple test method definition */ export declare const TEST_METHOD_SIMPLE: oMethod; /** * Method with multiple parameters and types */ export declare const TEST_METHOD_COMPLEX: oMethod; /** * Method with validation and errors */ export declare const TEST_METHOD_VALIDATION: oMethod; /** * Collection of test methods */ export declare const TEST_METHODS: { [key: string]: oMethod; }; /** * Get a test method definition by name */ export declare function getTestMethod(name: string): oMethod | undefined; /** * Create a custom test method */ export declare function createTestMethod(name: string, description: string, parameters?: any[]): oMethod; //# sourceMappingURL=test-methods.d.ts.map