Interface: DeidResult
The immutable result of a de-id pass: the transformed document plus the value-free manifest.
Example
import { deidentify } from "@cosyte/deid";
const result = deidentify({ loci: [] }, {});
result.manifest; // => [] (nothing acted on)
Properties
document
readonlydocument:DeidDocument
The transformed document (the generic locus document from the core).
manifest
readonlymanifest: readonlyDeidManifestEntry[]
The value-free audit of every action, in locus order.