diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-07-25 16:42:31 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-07-25 16:42:31 +0000 |
commit | aecaffcbfe80600f272f74af0c7ac2f121923c51 (patch) | |
tree | cb69c4d2fa0d3c738704d807ce0b83f57a5311ad /src/lib/models | |
parent | 6d27d53623d84127c43d3146619106e540549038 (diff) | |
download | tanzanite-aecaffcbfe80600f272f74af0c7ac2f121923c51.tar.gz tanzanite-aecaffcbfe80600f272f74af0c7ac2f121923c51.tar.bz2 tanzanite-aecaffcbfe80600f272f74af0c7ac2f121923c51.zip |
Automatically format code
Diffstat (limited to 'src/lib/models')
-rw-r--r-- | src/lib/models/Guild.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/models/Guild.ts b/src/lib/models/Guild.ts index 3972259..7a0384c 100644 --- a/src/lib/models/Guild.ts +++ b/src/lib/models/Guild.ts @@ -14,7 +14,7 @@ export interface GuildModel { punishmentEnding: string; disabledCommands: string[]; lockdownChannels: Snowflake[]; - autoModPhases: string[] + autoModPhases: string[]; } export interface GuildModelCreationAttributes { @@ -28,7 +28,7 @@ export interface GuildModelCreationAttributes { punishmentEnding?: string; disabledCommands?: string[]; lockdownChannels?: Snowflake[]; - autoModPhases?: string[] + autoModPhases?: string[]; } export class Guild extends BaseModel<GuildModel, GuildModelCreationAttributes> implements GuildModel { @@ -42,7 +42,7 @@ export class Guild extends BaseModel<GuildModel, GuildModelCreationAttributes> i punishmentEnding: string; disabledCommands: string[]; lockdownChannels: Snowflake[]; - autoModPhases: string[] + autoModPhases: string[]; static initModel(sequelize: Sequelize, client: BushClient): void { Guild.init( |