UNPKG

sfcc-dev-mcp

Version:

MCP server for Salesforce B2C Commerce Cloud development assistance including logs, debugging, and development tools

29 lines 952 B
/** * Path Resolver Helper * * Provides utilities for resolving file and directory paths based on the current working directory. * This abstraction allows for easier path management and testing. */ export declare class PathResolver { /** * Get the current working directory (project root) */ static getCurrentWorkingDir(): string; /** * Get a path relative to the current working directory */ static getRelativePath(...pathSegments: string[]): string; /** * Get the docs directory path relative to the current working directory */ static getDocsPath(): string; /** * Get the best practices docs directory path relative to the current working directory */ static getBestPracticesPath(): string; /** * Get the SFRA docs directory path relative to the current working directory */ static getSFRADocsPath(): string; } //# sourceMappingURL=path-resolver.d.ts.map