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>
10 lines
417 B
Text
10 lines
417 B
Text
/**
|
|
* @internal
|
|
*
|
|
* If clock is skewed, it returns the difference between serverTime and current time.
|
|
* If clock is not skewed, it returns currentSystemClockOffset.
|
|
*
|
|
* @param clockTime The string value of the server time.
|
|
* @param currentSystemClockOffset The current system clock offset.
|
|
*/
|
|
export declare const getUpdatedSystemClockOffset: (clockTime: string, currentSystemClockOffset: number) => number;
|