Files
klz-cables.com/.pnpm-store/v10/files/c8/f82b81ed9df32f849e9772e336b2967010cab4954e7270575eeb908e129b3c3eb607d88f7f1aea0d683ecaa84953382d5bf034eeaa1f7d8a8a7d2e6278c4fd
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

22 lines
447 B
Plaintext

declare namespace PostgresInterval {
export interface IPostgresInterval {
years: number;
months: number;
days: number;
hours: number;
minutes: number;
seconds: number;
milliseconds: number;
toPostgres(): string;
toISO(): string;
toISOString(): string;
toISOStringShort(): string;
}
}
declare function PostgresInterval(raw: string): PostgresInterval.IPostgresInterval;
export = PostgresInterval;