Rocky_Mountain_Vending/.pnpm-store/v10/files/87/71604f7784911e22d19c99be47459814ddc6186c3bb26a8317b08e4ea112463f3f620ab82e9311af4200f1d46f7f59896865eb186d1c7d6db9ebfe988a81bc
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

17 lines
513 B
Text

import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
export declare class AMPMParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
dateString: string,
token: string,
match: Match,
): ParseResult<LocaleDayPeriod>;
set<DateType extends Date>(
date: DateType,
_flags: ParseFlags,
value: LocaleDayPeriod,
): DateType;
incompatibleTokens: string[];
}