UNPKG

annotorious-tahqiq

Version:
16 lines (14 loc) 311 B
/** * W3C Annotation Body (does not meet the full specification). * https://www.w3.org/TR/annotation-model/#bodies-and-targets */ interface Body { value: string; type?: string; id?: string; purpose?: string; format?: string; language?: string; label?: string; } export { Body };