@umessen/dicom-deidentifier
Version:
DICOM de-identification library for TypeScript
18 lines (17 loc) • 626 B
TypeScript
import type DicomElement from './types/DicomElement';
import type DicomDictionary from './types/DicomDictionary';
import type DicomElementValue from './types/DicomElementValue';
import type VR from './types/VR';
export declare class DataElement {
private readonly element;
private readonly dictionary;
private readonly tag;
constructor(dictionary: DicomDictionary, tag: string, element: DicomElement);
delete(): void;
setValue(value: DicomElementValue): void;
getValue(): DicomElementValue;
getDictionary(): DicomDictionary;
getTag(): string;
getVR(): VR;
}
export default DataElement;