@veltdev/types
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
11 lines (10 loc) • 326 B
TypeScript
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;
}