Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/fcc9f60dee44462855e8b9bea944b0df11b88afa44a557e4d1039c301cb93917a70d9a57f4930e015ac088197491ed3fa0190a3e7890559478303b50aa5e6d
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

15 lines
987 B
Text

import { Readable } from 'node:stream';
import type { Callback, Data, Encoding, Path, ReadOptions, WriteOptions } from './types.js';
declare function readFile(filePath: Path, options: Encoding | ReadOptions & {
encoding: string;
}): Promise<string>;
declare function readFile(filePath: Path, options?: ReadOptions): Promise<Buffer>;
declare function readFileSync(filePath: Path, options: Encoding | ReadOptions & {
encoding: string;
}): string;
declare function readFileSync(filePath: Path, options?: ReadOptions): Buffer;
declare function writeFile(filePath: Path, data: Data | Readable, callback?: Callback): Promise<void>;
declare function writeFile(filePath: Path, data: Data | Readable, options?: Encoding | WriteOptions, callback?: Callback): Promise<void>;
declare function writeFileSync(filePath: Path, data: Data, options?: Encoding | WriteOptions): void;
export { readFile, readFileSync, writeFile, writeFileSync };
export type { Encoding, ReadOptions, WriteOptions };