UNPKG

@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.

19 lines (18 loc) 328 B
import { User } from "./user.data.model"; export declare class Reaction { /** * Emoji variant. */ variant?: string; /** * The user who added reaction. * */ from: User; /** * Timestamp when this reaction was added. * * Auto generated. */ lastUpdated?: Date; }