annotorious-tahqiq
Version:
A custom Annotorious editor/view plugin
16 lines (14 loc) • 311 B
text/typescript
/**
* 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 };