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

17 lines
625 B
Plaintext

import type { ReplayIntegrationPrivacyOptions } from '../types';
type GetPrivacyOptions = Required<Omit<ReplayIntegrationPrivacyOptions, 'maskFn'>>;
interface GetPrivacyReturn {
maskTextSelector: string;
unmaskTextSelector: string;
blockSelector: string;
unblockSelector: string;
ignoreSelector: string;
blockClass?: RegExp;
maskTextClass?: RegExp;
}
/**
* Returns privacy related configuration for use in rrweb
*/
export declare function getPrivacyOptions({ mask, unmask, block, unblock, ignore }: GetPrivacyOptions): GetPrivacyReturn;
export {};
//# sourceMappingURL=getPrivacyOptions.d.ts.map