Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/da0d49154893bf58be7fa41abcb295941f34d6ced03fa428ea4d16301ae580e14916e3f366828a3e60f533801edc1dede5dd6159c534fa8619e10e7ad7e8ea
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

17 lines
871 B
Text

import * as base from '@playwright/test';
import type { NextFixture } from './next-fixture';
import type { NextOptions, NextOptionsConfig } from './next-options';
import type { NextWorkerFixture } from './next-worker-fixture';
import { defaultPlaywrightConfig } from './default-config';
export { defaultPlaywrightConfig };
export * from '@playwright/test';
export declare function defineConfig<T extends NextOptionsConfig, W>(config: base.PlaywrightTestConfig<T, W>): base.PlaywrightTestConfig<T, W>;
export type { NextFixture, NextOptions };
export type { FetchHandlerResult } from '../proxy';
export declare const test: base.TestType<base.PlaywrightTestArgs & base.PlaywrightTestOptions & {
next: NextFixture;
nextOptions: NextOptions;
}, base.PlaywrightWorkerArgs & base.PlaywrightWorkerOptions & {
_nextWorker: NextWorkerFixture;
}>;
export default test;