import { IRectangle } from '../geometry'; import { List } from '@iqser/common-ui'; import { DictionaryEntryType } from './dictionary-entry-types'; export interface IAddRedactionRequest { addToDictionary?: boolean; addToDossierDictionary?: boolean; dictionaryEntryType?: DictionaryEntryType; comment?: { text: string }; legalBasis?: string; positions?: List; reason?: string; type?: string; value?: string; section?: string; rectangle?: boolean; }