@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
19 lines (18 loc) • 539 B
TypeScript
import { Overwrite, Guild, INewsChannel, EvolveClient } from "../..";
import { Objex } from "@evolvejs/objex";
import { Channel } from "./Channel";
export declare class NewsChannel extends Channel {
overwrites: Objex<string, Overwrite>;
guild?: Guild;
position: number;
name: string;
topic?: string;
nsfw: boolean;
lastMessage?: string;
rateLimit: number;
parentID?: string;
lastPin?: string;
data: INewsChannel;
constructor(data: INewsChannel, client: EvolveClient);
private _handle;
}