Files
klz-cables.com/.pnpm-store/v10/files/11/9006977a640da33d6668c8f7990d1ac831f0c4e7b15bbfb8008b778e6206edc3582f88e87b70116f5a89319ea847a0582c73c742fde553a3a5bc753ff20426
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

13 lines
394 B
Plaintext

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