Files
klz-cables.com/.pnpm-store/v10/files/2a/3b873666f7d7ce178d42ec73f2cd5934cbc25820da21469025e31fe0e5981f35e244072c6836da6ac864cd8cd6148218c013589a2151ca3df993a4e5ddb34b
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

18 lines
686 B
Plaintext

import { ReplayIntegrationPrivacyOptions } from '../types';
type GetPrivacyOptions = Required<Pick<ReplayIntegrationPrivacyOptions, Exclude<keyof 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