1 files changed, 3 insertions, 1 deletions
diff --git a/dist/models/Channel.d.ts b/dist/models/Channel.d.ts
index 289f77c6..2528070a 100644
--- a/dist/models/Channel.d.ts
+++ b/dist/models/Channel.d.ts
@@ -1,6 +1,8 @@
/// <reference path="../util/MongoBigInt.d.ts" />
import { Schema, Document } from "mongoose";
-export interface ChannelDocument extends Channel, DMChannel, TextChannel, VoiceChannel, Document {
+export interface AnyChannel extends Channel, DMChannel, TextChannel, VoiceChannel {
+}
+export interface ChannelDocument extends Document, AnyChannel {
id: bigint;
}
export declare const ChannelSchema: Schema<Document<any>, import("mongoose").Model<Document<any>>, undefined>;
|