import { IVersionedObject } from "./IVersionedObject"; import { Tag } from "../tags/Tags"; export interface IAnnotation extends IVersionedObject { readonly tags?: { [id: string]: Tag; }; readonly flagged?: boolean; }