chore: move operators into core

This commit is contained in:
jacoobes
2023-04-14 12:59:13 -05:00
parent 09e57c73ac
commit 1a4e046f50
6 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,6 @@ import type { Processed } from '../../types/handler';
import { ApplicationCommandType, ComponentType } from './enums';
/**
* @since 2.0.0
* Storing all command modules

View File

@@ -9,6 +9,7 @@ interface Wrapper {
readonly defaultPrefix?: string;
readonly commands: string;
readonly events?: string;
readonly strategy: PlatformStrategy;
readonly containerConfig: {
get: (...keys: (keyof Dependencies)[]) => unknown[];
};