diff options
Diffstat (limited to 'src/config/example-options.ts')
-rw-r--r-- | src/config/example-options.ts | 16 |
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 |