Type Alias: DeidentifyErrorCode
DeidentifyErrorCode = typeof
DEIDENTIFY_ERROR_CODES[keyof typeofDEIDENTIFY_ERROR_CODES]
One of the DEIDENTIFY_ERROR_CODES values.
Example
import { DeidentifyError, type DeidentifyErrorCode } from "@cosyte/dicom";
const code: DeidentifyErrorCode = "INVALID_OPTIONS";
throw new DeidentifyError("unknown retain option", code);