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>
17 lines
513 B
Text
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[];
|
|
}
|