From c40a94697d64962edda41345e03fa76f51aa431c Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 31 Oct 2021 22:38:06 -0400 Subject: upgrade typescript, improve workflow, bunch of bug fixes and some other things --- src/tasks/removeExpiredPunishements.ts | 2 +- src/tasks/updateCache.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tasks') diff --git a/src/tasks/removeExpiredPunishements.ts b/src/tasks/removeExpiredPunishements.ts index b39cdb7..dee6a89 100644 --- a/src/tasks/removeExpiredPunishements.ts +++ b/src/tasks/removeExpiredPunishements.ts @@ -1,4 +1,4 @@ -import { ActivePunishment, ActivePunishmentType, BushGuild, BushTask, BushUser } from '@lib'; +import { ActivePunishment, ActivePunishmentType, BushTask, type BushGuild, type BushUser } from '@lib'; import { Op } from 'sequelize'; export default class RemoveExpiredPunishmentsTask extends BushTask { diff --git a/src/tasks/updateCache.ts b/src/tasks/updateCache.ts index 11d6ca9..6ccf609 100644 --- a/src/tasks/updateCache.ts +++ b/src/tasks/updateCache.ts @@ -1,4 +1,4 @@ -import { BushClient, Global, Guild } from '@lib'; +import { Global, Guild, type BushClient } from '@lib'; import { BushTask } from '../lib/extensions/discord-akairo/BushTask'; import config from './../config/options'; -- cgit