Rocky_Mountain_Vending/.pnpm-store/v10/files/79/e483779247d1586aa537b8e66f063baef24808f9d71be6ac3bd77904ac1e18e0a38bc961d62870fe427f9ebf80dcfddf8496c523d94005a8fbf793cfd16623
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

29 lines
700 B
Text

/**
* Time interval.
*/
export interface TZChangeInterval {
/** Start date. */
start: Date;
/** End date. */
end: Date;
}
/**
* Time zone change record.
*/
export interface TZChange {
/** Date time the change occurs */
date: Date;
/** Offset change in minutes */
change: number;
/** New UTC offset in minutes */
offset: number;
}
/**
* The function scans the time zone for changes in the given interval.
*
* @param timeZone - Time zone name (IANA or UTC offset)
* @param interval - Time interval to scan for changes
*
* @returns Array of time zone changes
*/
export declare function tzScan(timeZone: string, interval: TZChangeInterval): TZChange[];