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
17 lines
625 B
Plaintext
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 |