import { AreaAnnotation } from "./area-annotation.data.model";
import { CommentAnnotation } from "./comment-annotation.data.model";
export interface ScreenshotData {
    source?: string;
    sourceData?: {
        commentAnnotation?: CommentAnnotation;
        areaAnnotation?: AreaAnnotation;
    };
    eventType: string;
}
