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>
6 lines
401 B
Text
6 lines
401 B
Text
export declare class ReflectAdapter {
|
|
static get<T extends object>(target: T, prop: string | symbol, receiver: unknown): any;
|
|
static set<T extends object>(target: T, prop: string | symbol, value: any, receiver: any): boolean;
|
|
static has<T extends object>(target: T, prop: string | symbol): boolean;
|
|
static deleteProperty<T extends object>(target: T, prop: string | symbol): boolean;
|
|
}
|