/** * Scanning operations for folder-level metadata reading */ import type { FolderScanOptions, FolderScanResult } from "./types.js"; /** * Scan a folder and read metadata from all audio files * * @param folderPath - Path to the folder to scan * @param options - Scanning options * @returns Metadata for all audio files found * * @example * ```typescript * const result = await scanFolder("/path/to/music"); * for (const item of result.items) { * if (item.status === "ok") { * console.log(`${item.path}: ${item.tags.artist} - ${item.tags.title}`); * } * } * ``` */ export declare function scanFolder(folderPath: string, options?: FolderScanOptions): Promise; //# sourceMappingURL=scan-operations.d.ts.map