aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-14 22:51:48 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-14 22:51:48 -0400
commitd055e0dbb86ef7fd4ee96a1531b51181e825fb4b (patch)
treee2ed9e956f2d8167e7f225383f9917e66d2a2803 /src/config
parent335f7c30994fc8c4e787f407dfd4c2de63b400e3 (diff)
downloadtanzanite-d055e0dbb86ef7fd4ee96a1531b51181e825fb4b.tar.gz
tanzanite-d055e0dbb86ef7fd4ee96a1531b51181e825fb4b.tar.bz2
tanzanite-d055e0dbb86ef7fd4ee96a1531b51181e825fb4b.zip
made a few changes
Diffstat (limited to 'src/config')
-rw-r--r--src/config/example-options.ts16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/config/example-options.ts b/src/config/example-options.ts
index ebd8c21..a00ba42 100644
--- a/src/config/example-options.ts
+++ b/src/config/example-options.ts
@@ -1,22 +1,24 @@
+import { Snowflake } from 'discord.js';
+
// Credentials
export const credentials = {
botToken: 'token here'
};
// Options
-export const owners = [
+export const owners: Snowflake[] = [
'322862723090219008', //IRONM00N
'464970779944157204', //TrashCan
'487443883127472129' //Tyman
];
export const prefix = '-' as string;
export const dev = true as boolean;
-export const devGuild = '695310188764332072' as string;
-export const channels = {
- log: 'id here',
- error: 'id here',
- dm: 'id here',
- command: 'id here'
+export const devGuild = '1000000000000000' as Snowflake;
+export const channels: { log: Snowflake; error: Snowflake; dm: Snowflake; command: Snowflake } = {
+ log: '1000000000000000',
+ error: '1000000000000000',
+ dm: '1000000000000000',
+ command: '1000000000000000'
};
// Database specific