UNPKG

@replyke/core

Version:

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

13 lines (12 loc) 267 B
import { Entity } from "./Entity"; export interface List { id: string; projectId: string; userId: string; parentId: string | null; name: string; entityIds: string[]; entities: Partial<Entity>[]; createdAt: Date; updatedAt: Date; }