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>
17 lines
463 B
Text
17 lines
463 B
Text
export declare class Mocker {
|
|
pick: (...args: any[]) => any;
|
|
get string(): string;
|
|
get number(): number;
|
|
get bigint(): bigint;
|
|
get boolean(): boolean;
|
|
get date(): Date;
|
|
get symbol(): symbol;
|
|
get null(): null;
|
|
get undefined(): undefined;
|
|
get stringOptional(): any;
|
|
get stringNullable(): any;
|
|
get numberOptional(): any;
|
|
get numberNullable(): any;
|
|
get booleanOptional(): any;
|
|
get booleanNullable(): any;
|
|
}
|