summary refs log tree commit diff
path: root/dist/models/Channel.d.ts
blob: 289f77c68b194750dab6b7603bf8dc58f724e193 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/// <reference path="../util/MongoBigInt.d.ts" />
import { Schema, Document } from "mongoose";
export interface ChannelDocument extends Channel, DMChannel, TextChannel, VoiceChannel, Document {
    id: bigint;
}
export declare const ChannelSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
export declare const ChannelModel: import("mongoose").Model<ChannelDocument>;
export interface Channel {
    id: bigint;
    created_at: number;
    name: string;
    type: number;
}
export interface TextBasedChannel {
    last_message_id?: bigint;
    last_pin_timestamp?: number;
}
export interface GuildChannel extends Channel {
    guild_id: bigint;
    position: number;
    parent_id?: bigint;
    permission_overwrites: ChannelPermissionOverwrite[];
}
export interface ChannelPermissionOverwrite {
    allow: bigint;
    deny: bigint;
    id: bigint;
    type: ChannelPermissionOverwriteType;
}
export declare enum ChannelPermissionOverwriteType {
    role = 0,
    member = 1
}
export interface VoiceChannel extends GuildChannel {
}
export interface TextChannel extends GuildChannel, TextBasedChannel {
    nsfw: boolean;
    rate_limit_per_user: number;
    topic?: string;
}
export interface DMChannel extends Channel, TextBasedChannel {
    owner_id: bigint;
    recipients: bigint[];
}
export declare enum ChannelType {
    GUILD_TEXT = 0,
    DM = 1,
    GUILD_VOICE = 2,
    GROUP_DM = 3,
    GUILD_CATEGORY = 4,
    GUILD_NEWS = 5,
    GUILD_STORE = 6
}