From d055e0dbb86ef7fd4ee96a1531b51181e825fb4b Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 14 Jun 2021 22:51:48 -0400 Subject: made a few changes --- src/config/example-options.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'src/config') 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 -- cgit