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>
9 lines
336 B
Text
9 lines
336 B
Text
/**
|
|
* @internal
|
|
*
|
|
* Checks if the provided date is within the skew window of 300000ms.
|
|
*
|
|
* @param clockTime - The time to check for skew in milliseconds.
|
|
* @param systemClockOffset - The offset of the system clock in milliseconds.
|
|
*/
|
|
export declare const isClockSkewed: (clockTime: number, systemClockOffset: number) => boolean;
|