aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-17 18:14:00 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-17 18:14:00 +0000
commitb342b10526616123420688253468ff4ca78e4c55 (patch)
treea49611f62c1098506da925e449b133916338d0de /src/lib
parent2db40054054c9452359c83cbad23bb2c9fa3234e (diff)
downloadtanzanite-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.ts6
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.
*/