UNPKG

@pubby/sdk

Version:
12 lines (11 loc) 276 B
import { User } from "./user"; export declare type FriendshipStatus = "pending" | "accepted"; export interface Friendship { id: string; from: User; to: User; fromId: string; toId: string; status: FriendshipStatus; responseDate?: Date; }