aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushChannel.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-25 23:20:58 -0500
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-02-25 23:20:58 -0500
commit7057cebb3c37634cfa1468e1f49ce30a890681b6 (patch)
tree0a2ab2c335db439747134a07cbe7982d76f5d0f4 /src/lib/extensions/discord.js/BushChannel.ts
parent866cd2c23eaa3918d01806556ea71f6c7b378ca7 (diff)
downloadtanzanite-7057cebb3c37634cfa1468e1f49ce30a890681b6.tar.gz
tanzanite-7057cebb3c37634cfa1468e1f49ce30a890681b6.tar.bz2
tanzanite-7057cebb3c37634cfa1468e1f49ce30a890681b6.zip
chore: update dependencies and fix breaking changes
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>;