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

38 lines
840 B
Plaintext

import {Buffer} from 'buffer';
export default ObjectID
declare const ObjectID: ObjectIDCtor;
declare interface ObjectID {
readonly id: string;
readonly str: string;
toHexString(): string;
equals(other: ObjectID): boolean;
getTimestamp(): Date;
}
declare interface ObjectIDCtor {
(): ObjectID
(time: number): ObjectID
(hexString: string): ObjectID
(idString: string): ObjectID
(array: number[]): ObjectID
(buffer: Buffer): ObjectID
new(): ObjectID
new(time: number): ObjectID
new(hexString: string): ObjectID
new(idString: string): ObjectID
new(array: number[]): ObjectID
new(buffer: Buffer): ObjectID
createFromTime(time: number): ObjectID;
createFromHexString(hexString: string): ObjectID;
isValid(hexString: string): boolean;
isValid(ObjectID: ObjectID): boolean;
toString(): string;
}