feat: remove jest.config.ts

This commit is contained in:
Jacob Nguyen
2022-06-06 00:57:43 -05:00
parent 5fbd3a6d68
commit 72ceede26a
2 changed files with 1 additions and 197 deletions

View File

@@ -1,14 +1,12 @@
import type { DiscordEvent, EventEmitterRegister, SernEvent } from '../types/handler';
import type Wrapper from './structures/wrapper';
import { from, fromEvent } from 'rxjs';
import { fromEvent } from 'rxjs';
import { onReady } from './events/readyEvent';
import { onMessageCreate } from './events/messageEvent';
import { onInteractionCreate } from './events/interactionCreate';
import { Err, Ok } from 'ts-results';
import { isDiscordEvent, isSernEvent } from './utilities/predicates';
import type { Client } from 'discord.js';
import wrapper from './structures/wrapper';
export function init(wrapper: Wrapper) {
const { events, client } = wrapper;