@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.
17 lines (16 loc) • 391 B
TypeScript
import { BaseMetadata } from "./base-metadata.data.model";
export interface Heartbeat {
id: string;
createdTimestamp: number;
userId: string;
veltUserId: string;
tabId: string;
metadata: BaseMetadata;
lastUpdatedTimestamp: number;
}
export interface HeartbeatConfig {
userId?: string;
}
export interface GetHeartbeatResponse {
data: Heartbeat[] | null;
}