Files
klz-cables.com/.pnpm-store/v10/files/2e/f8d85b29179b38a6c508566da360e4d12c1b40ad786c12795e14aedf0ed6a66f6a81aa89f99a7baad8bb586e685b679df75d864b748d291454d3454aa712af
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

14 lines
547 B
Plaintext

/**
* Copyright (c) 2017, Dirk-Jan Rutten
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
export declare const validateTime: (time: string) => boolean;
export declare const validateDate: (datestring: string) => boolean;
export declare const validateDateTime: (dateTimeString: string) => boolean;
export declare const validateUnixTimestamp: (timestamp: number) => boolean;
export declare const validateJSDate: (date: Date) => boolean;