Rocky_Mountain_Vending/.pnpm-store/v10/files/7c/afcec300a4d80cfc8535ebddc2b672b8d41839c2b175f88e6e6b2242b088c3aa962daab4487d19c72e7e7d2f2becf1b3dfaa6fdffc86598fe2b9a507abb9d1
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

9 lines
284 B
Text

import type { FormatDistanceFn } from "../../types.js";
export type FormatDistanceTokanRelativeValue = {
one: string;
other: string;
};
export type FormatDistanceLocaleValue =
| FormatDistanceTokanRelativeValue
| string;
export declare const formatDistance: FormatDistanceFn;