@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
14 lines (13 loc) • 346 B
TypeScript
import { CHANNELTYPES } from "..";
import { IUser } from "./UserOptions";
export interface IGroupChannel {
id: string;
type: CHANNELTYPES.Group;
name?: string;
last_message_id?: string | null;
recipients: IUser[];
icon?: string | null;
owner_id: string;
application_id?: string;
last_pin_timestamp?: number;
}