UNPKG

sql-talk

Version:

SQL Talk - 自然言語をSQLに変換するMCPサーバー(安全性保護・SSHトンネル対応) / SQL Talk - MCP Server for Natural Language to SQL conversion with safety guards and SSH tunnel support

32 lines 917 B
/** * ワークスペース検知ユーティリティ * Workspace detection utility */ export declare class WorkspaceDetector { /** * プロジェクトルートを検出 * Detect project root directory */ static detectProjectRoot(): string; /** * プロジェクトルートが有効かチェック * Check if directory is a valid project root */ private static isValidProjectRoot; /** * ワークスペース内の設定ファイルパスを取得 * Get configuration file path within workspace */ static getConfigPath(workspaceRoot?: string): string; /** * ワークスペース情報を取得 * Get workspace information */ static getWorkspaceInfo(): { root: string; configPath: string; hasConfig: boolean; projectType: string; }; } //# sourceMappingURL=workspace-detector.d.ts.map