UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

13 lines (12 loc) 257 B
export type Mention = UserMention | SpaceMention; export interface UserMention { type: "user"; id: string; foreignId?: string | null; username: string; } export interface SpaceMention { type: "space"; id: string; slug: string; }