UNPKG

oceanic.js

Version:

A NodeJS library for interfacing with Discord.

12 lines (11 loc) 458 B
/** @module MediaChannel */ import ThreadOnlyChannel from "./ThreadOnlyChannel"; import type Client from "../Client"; import type { ChannelTypes } from "../Constants"; import type { JSONMediaChannel, RawMediaChannel } from "../types"; /** Represents a media channel. */ export default class MediaChannel extends ThreadOnlyChannel { type: ChannelTypes.GUILD_MEDIA; constructor(data: RawMediaChannel, client: Client); toJSON(): JSONMediaChannel; }