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>
16 lines
377 B
Text
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;
|