fix(handler.ts): added the changes of Module<T>.execute to type delegate (now type execute)

This commit is contained in:
jacoobes
2022-02-14 13:12:39 -06:00
parent 870287674a
commit f062a33868
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"release": "standard-version && git push --follow-tags",
"commit" : "cz"
"commit": "cz"
},
"keywords": [],
"author": "",

View File

@@ -14,7 +14,7 @@ export type Visibility = 'private' | 'public';
// Anything that can be sent in a `<TextChannel>#send` or `<CommandInteraction>#reply`
export type possibleOutput<T = string> = T | (MessagePayload & MessageOptions);
export type Nullable<T> = T | null;
export type delegate = Sern.Module<unknown>['delegate'];
export type execute = Sern.Module<unknown>['execute'];
// Thanks @cursorsdottsx
export type ParseType<T> = {