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>
12 lines
433 B
Text
12 lines
433 B
Text
import type { TestInfo } from '@playwright/test';
|
|
export interface StepProps {
|
|
category: string;
|
|
title: string;
|
|
apiName?: string;
|
|
params?: Record<string, string | number | boolean | null | undefined>;
|
|
}
|
|
type Complete = (result: {
|
|
error?: any;
|
|
}) => void;
|
|
export declare function step<T>(_testInfo: TestInfo, props: StepProps, handler: (complete: Complete) => Promise<Awaited<T>>): Promise<Awaited<T>>;
|
|
export {};
|