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>
14 lines
531 B
Text
14 lines
531 B
Text
import type { Match } from "../../../locale/types.js";
|
|
import { Parser } from "../Parser.js";
|
|
import type { ParseFlags, ParseResult } from "../types.js";
|
|
export declare class ISOWeekParser extends Parser<number> {
|
|
priority: number;
|
|
parse(dateString: string, token: string, match: Match): ParseResult<number>;
|
|
validate<DateType extends Date>(_date: DateType, value: number): boolean;
|
|
set<DateType extends Date>(
|
|
date: DateType,
|
|
_flags: ParseFlags,
|
|
value: number,
|
|
): DateType;
|
|
incompatibleTokens: string[];
|
|
}
|