UNPKG

@evolvejs/core

Version:

An advanced Discord API wrapper with TS and JS support

17 lines (16 loc) 439 B
import { CHANNELTYPES } from ".."; import { IOverwrite } from "./OverwriteOptions"; export interface INewsChannel { id: string; type: CHANNELTYPES.News; guild_id: string; position: number; permission_overwrites: IOverwrite[]; name: string; topic?: string | null; nsfw: boolean; last_message_id?: string | null; rate_limit_per_user: number; parent_id?: string; last_pin_timestamp?: number; }