import { Match } from "../match/interface-client"; import { MatchActivityType } from "./types"; export interface MatchActivity { _id: string; type: MatchActivityType; match: Match; member_ids: string[]; datetime: number; seen: number; }