will it work

This commit is contained in:
EvolutionX
2022-02-14 09:53:40 +05:30
5 changed files with 4 additions and 4 deletions

View File

@@ -1,12 +1,12 @@
import * as Files from './utilitiess/readFile';
import type * as Utils from './utilitiess/Preprocessors/args';
import * as Files from './utilities/readFile';
import type * as Utils from './utilities/Preprocessors/args';
import type { Arg, Context, Visibility, possibleOutput } from '../types/handler';
import type { ApplicationCommandOptionData, Awaitable, Client, CommandInteraction, Message } from 'discord.js';
import { Ok, Result, None, Some } from 'ts-results';
import { isBot, hasPrefix, fmt } from './utilitiess/messageHelpers';
import { isBot, hasPrefix, fmt } from './utilities/messageHelpers';
import Logger from './logger';
/**

View File

@@ -1,5 +1,5 @@
import * as Sern from './handler/sern';
import * as Utils from './handler/utilitiess/Preprocessors/args';
import * as Utils from './handler/utilities/Preprocessors/args';
import * as Types from './types/handler';
module.exports = { Sern, Utils, Types };