Files
klz-cables.com/.pnpm-store/v10/files/69/951f55e65c5fffc176637a19c729a5db0a4398b806bea09109256f509bbaf1366b3096bd5fc469554f6e880608f59e48cbe0ba540e0743d6a02ae981d79172
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

31 lines
1009 B
Plaintext

import { AddEventResult, EventBuffer, EventBufferType, RecordingEvent } from '../types';
/**
* A basic event buffer that does not do any compression.
* Used as fallback if the compression worker cannot be loaded or is disabled.
*/
export declare class EventBufferArray implements EventBuffer {
/** All the events that are buffered to be sent. */
events: RecordingEvent[];
/** @inheritdoc */
hasCheckout: boolean;
/** @inheritdoc */
waitForCheckout: boolean;
private _totalSize;
constructor();
/*@inheritdoc */
readonly hasEvents: boolean;
/*@inheritdoc */
readonly type: EventBufferType;
/** @inheritdoc */
destroy(): void;
/** @inheritdoc */
addEvent(event: RecordingEvent): Promise<AddEventResult>;
/** @inheritdoc */
finish(): Promise<string>;
/** @inheritdoc */
clear(): void;
/** @inheritdoc */
getEarliestTimestamp(): number | null;
}
//# sourceMappingURL=EventBufferArray.d.ts.map