aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushChannel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/extensions/discord.js/BushChannel.ts')
-rw-r--r--src/lib/extensions/discord.js/BushChannel.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/extensions/discord.js/BushChannel.ts b/src/lib/extensions/discord.js/BushChannel.ts
index 8779342..3f0d070 100644
--- a/src/lib/extensions/discord.js/BushChannel.ts
+++ b/src/lib/extensions/discord.js/BushChannel.ts
@@ -20,11 +20,11 @@ import type { RawChannelData } from 'discord.js/typings/rawDataTypes';
*/
export declare class BushChannel extends Channel {
public constructor(client: BushClient, data?: RawChannelData, immediatePatch?: boolean);
- public readonly createdAt: Date | null;
- public readonly createdTimestamp: number | null;
+ public get createdAt(): Date | null;
+ public get createdTimestamp(): number | null;
public deleted: boolean;
public id: Snowflake;
- public readonly partial: false;
+ public get partial(): false;
public type: ChannelType;
public delete(): Promise<this>;
public fetch(force?: boolean): Promise<this>;