import { PathInfo } from './types.js'; import 'fs'; /** * Base adapter interface for platform-specific implementations * This defines the common interface that all platform adapters must implement */ /** * Base adapter interface that all platform-specific adapters must implement */ interface OSAdapter { /** * Find paths based on the provided search options * @returns Array of path results */ findPaths(): Promise; } export type { OSAdapter };