aboutsummaryrefslogtreecommitdiff
path: root/src/lib/models/StickyRole.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/models/StickyRole.ts')
-rw-r--r--src/lib/models/StickyRole.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/models/StickyRole.ts b/src/lib/models/StickyRole.ts
index 63c9726..64f0b4d 100644
--- a/src/lib/models/StickyRole.ts
+++ b/src/lib/models/StickyRole.ts
@@ -2,7 +2,7 @@ import { type Snowflake } from 'discord.js';
import { type Sequelize } from 'sequelize';
import { BaseModel } from './BaseModel.js';
import { jsonArray } from './__helpers.js';
-const { DataTypes } = (await import('sequelize')).default
+const { DataTypes } = (await import('sequelize')).default;
export interface StickyRoleModel {
user: Snowflake;
@@ -18,23 +18,23 @@ export interface StickyRoleModelCreationAttributes {
}
export class StickyRole extends BaseModel<StickyRoleModel, StickyRoleModelCreationAttributes> implements StickyRoleModel {
- /**
- * The id of the user the roles belongs to.
+ /**
+ * The id of the user the roles belongs to.
*/
public declare user: Snowflake;
- /**
- * The guild where this should happen.
+ /**
+ * The guild where this should happen.
*/
public declare guild: Snowflake;
- /**
- * The roles that the user should have returned
+ /**
+ * The roles that the user should have returned
*/
public declare roles: Snowflake[];
- /**
- * The user's previous nickname
+ /**
+ * The user's previous nickname
*/
public declare nickname: string;