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>
14 lines
460 B
Text
14 lines
460 B
Text
export declare function assertType<Type>(_value: Type): void;
|
|
export declare namespace assertType {
|
|
type Equal<T, U> =
|
|
Exclude<T, U> extends never
|
|
? Exclude<U, T> extends never
|
|
? true
|
|
: false
|
|
: false;
|
|
}
|
|
export declare function resetDefaultOptions(): void;
|
|
export declare function generateOffset(originalDate: Date): string;
|
|
export declare function fakeDate(date: number | Date): {
|
|
fakeNow: (date: number | Date) => void;
|
|
};
|