Rocky_Mountain_Vending/.pnpm-store/v10/files/67/e76b9348902621544e67ab197e5ac4d53b9910e3cf84c4d6b41bdafb2b8079dbc612acdd260fb45f4774bae94eb5b631c7e429e6482c134e7756102fc06e9d
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

16 lines
377 B
Text

import type {
LocalizedOptions,
FirstWeekContainsDateOptions,
WeekOptions,
} from "../../types.js";
export interface ParseFlags {
timestampIsSet?: boolean;
era?: number;
}
export type ParserOptions = Required<
LocalizedOptions<"options"> & FirstWeekContainsDateOptions & WeekOptions
>;
export type ParseResult<TValue> = {
value: TValue;
rest: string;
} | null;