diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-07-17 18:14:00 +0000 |
---|---|---|
committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-07-17 18:14:00 +0000 |
commit | b342b10526616123420688253468ff4ca78e4c55 (patch) | |
tree | a49611f62c1098506da925e449b133916338d0de /src/lib | |
parent | 2db40054054c9452359c83cbad23bb2c9fa3234e (diff) | |
download | tanzanite-b342b10526616123420688253468ff4ca78e4c55.tar.gz tanzanite-b342b10526616123420688253468ff4ca78e4c55.tar.bz2 tanzanite-b342b10526616123420688253468ff4ca78e4c55.zip |
Automatically format code
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/models/Global.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/models/Global.ts b/src/lib/models/Global.ts index 08392c5..ee9f43c 100644 --- a/src/lib/models/Global.ts +++ b/src/lib/models/Global.ts @@ -3,7 +3,7 @@ import { DataTypes, Sequelize } from 'sequelize'; import { BaseModel } from './BaseModel'; export interface GlobalModel { - environment: 'production' | 'development'|'beta'; + environment: 'production' | 'development' | 'beta'; superUsers: Snowflake[]; disabledCommands: string[]; blacklistedUsers: Snowflake[]; @@ -12,7 +12,7 @@ export interface GlobalModel { } export interface GlobalModelCreationAttributes { - environment: 'production' | 'development'|'beta'; + environment: 'production' | 'development' | 'beta'; superUsers?: Snowflake[]; disabledCommands?: string[]; blacklistedUsers?: Snowflake[]; @@ -24,7 +24,7 @@ export class Global extends BaseModel<GlobalModel, GlobalModelCreationAttributes /** * The bot's environment. */ - environment: 'production' | 'development'|'beta'; + environment: 'production' | 'development' | 'beta'; /** * Trusted users. */ |