From f1973996dc5f1790df3f72af75732a0d250a14e2 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 9 Aug 2022 08:28:41 -0400 Subject: un readonly --- src/lib/extensions/discord-akairo/BushClient.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/lib/extensions/discord-akairo/BushClient.ts b/src/lib/extensions/discord-akairo/BushClient.ts index 44c995a..855c252 100644 --- a/src/lib/extensions/discord-akairo/BushClient.ts +++ b/src/lib/extensions/discord-akairo/BushClient.ts @@ -79,11 +79,11 @@ const { Sequelize } = (await import('sequelize')).default; declare module 'discord.js' { export interface Client extends EventEmitter { /** The ID of the owner(s). */ - readonly ownerID: Snowflake | Snowflake[]; + ownerID: Snowflake | Snowflake[]; /** The ID of the superUser(s). */ - readonly superUserID: Snowflake | Snowflake[]; + superUserID: Snowflake | Snowflake[]; /** Whether or not the client is ready. */ - readonly customReady: boolean; + customReady: boolean; /** The configuration for the client. */ readonly config: Config; /** Stats for the client. */ @@ -152,8 +152,8 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)); * The main hub for interacting with the Discord API. */ export class BushClient extends AkairoClient { - public declare readonly ownerID: Snowflake[]; - public declare readonly superUserID: Snowflake[]; + public declare ownerID: Snowflake[]; + public declare superUserID: Snowflake[]; /** * Whether or not the client is ready. -- cgit