Files
klz-cables.com/.pnpm-store/v10/files/06/8ae913b1ff7749925f7a724a20617132816a6653c3d0a93019d40a55cf30f2654b754d3b1619d0db6af3b1fd617442de4cd2bc0438e781ba0f328537d0f429
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
389 B
Plaintext

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