Skip to main content
Version: v0.0.6

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

readonly document: DeidDocument

The transformed document (the generic locus document from the core).


manifest

readonly manifest: readonly DeidManifestEntry[]

The value-free audit of every action, in locus order.