aboutsummaryrefslogtreecommitdiff
path: root/src/lib/models/Mute.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-14 13:12:32 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-14 13:12:32 -0400
commit070b5f326d0647e7b105f99811e4bdc915c8652e (patch)
tree15c5e3366acb9f6056de83924db6dd9db961061a /src/lib/models/Mute.ts
parentcdb8b0297f806cb3147b3759b0fd234bffbcc3f9 (diff)
downloadtanzanite-070b5f326d0647e7b105f99811e4bdc915c8652e.tar.gz
tanzanite-070b5f326d0647e7b105f99811e4bdc915c8652e.tar.bz2
tanzanite-070b5f326d0647e7b105f99811e4bdc915c8652e.zip
revamped role command and some other stuff
Diffstat (limited to 'src/lib/models/Mute.ts')
-rw-r--r--src/lib/models/Mute.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/models/Mute.ts b/src/lib/models/Mute.ts
index 71a32e3..4208d02 100644
--- a/src/lib/models/Mute.ts
+++ b/src/lib/models/Mute.ts
@@ -5,15 +5,15 @@ import { BaseModel } from './BaseModel';
export interface MuteModel {
id: string;
- user: string;
- guild: string;
+ user: Snowflake;
+ guild: Snowflake;
expires: Date;
modlog: string;
}
export interface MuteModelCreationAttributes {
id?: string;
- user: string;
- guild: string;
+ user: Snowflake;
+ guild: Snowflake;
expires?: Date;
modlog: string;
}