Type Alias RecentActivityType

RecentActivityType: {
    createdAt: number;
    message: string;
    type:
        | "premium"
        | "live"
        | "vod"
        | "clip"
        | "overlay"
        | "link"
        | "vote";
}[]