UNPKG

@veltdev/sdk

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.

34 lines (33 loc) 712 B
import { UserContact } from "./user-contact.data.model"; import { UserRole } from "./user-role.data.model"; import { User } from "./user.data.model"; export declare class DocumentUser { /** * The user's id (Email id of the user) */ id: string; /** * The user's contact details */ user: UserContact; /** * The user's role in the document */ role: UserRole; /** * User who invited this user */ invitedBy?: User; /** * Date when this user was invited */ invitedDate?: any; /** * User who updated this user */ updatedBy?: User; /** * Date when this user was updated */ updatedDate?: any; }