UNPKG

@himorishige/noren-core

Version:

Core PII detection, masking, and tokenization library built on Web Standards

11 lines 455 B
import type { Registry } from './index.js'; import type { Policy } from './types.js'; /** * Create a TransformStream that processes text chunks for PII redaction * while preserving binary chunks unchanged */ export declare function createRedactionTransform(registry: Registry, options?: { window?: number; policy?: Policy; }): TransformStream<Uint8Array<ArrayBufferLike>, Uint8Array<ArrayBufferLike>>; //# sourceMappingURL=stream-utils.d.ts.map