Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
465 B
Text
15 lines
465 B
Text
import type { FileReader } from './file-reader';
|
|
/**
|
|
* CachedFileReader will deduplicate requests made to the same folder structure
|
|
* to scan for files.
|
|
*/
|
|
export declare class BatchedFileReader implements FileReader {
|
|
private readonly reader;
|
|
private batch?;
|
|
constructor(reader: FileReader);
|
|
private schedulePromise?;
|
|
private schedule;
|
|
private getOrCreateBatch;
|
|
private load;
|
|
read(dir: string): Promise<ReadonlyArray<string>>;
|
|
}
|