mcp-appium-visual
Version:
MCP Server for Appium mobile automation with visual recovery
20 lines • 666 B
TypeScript
/**
* Utility functions for configuration management
*/
/**
* Deep merge two objects
*
* @param target The target object to merge into
* @param source The source object to merge from
* @returns A new object with merged properties
*/
export declare function deepMerge<T extends object = object>(target: T, source: T): T;
/**
* Convert a relative path to an absolute path
*
* @param relativePath The relative path
* @param basePath Optional base path (defaults to current working directory)
* @returns The absolute path
*/
export declare function getAbsolutePath(relativePath: string, basePath?: string): string;
//# sourceMappingURL=configUtils.d.ts.map