changed default value of Module<T> to void

This commit is contained in:
jacoobes
2022-02-07 01:23:02 -06:00
parent b328edb7ce
commit 07018b6d09

View File

@@ -139,7 +139,7 @@ export interface Wrapper {
/**
* @interface - Modules that are used in command files
*/
export interface Module<T = string> {
export interface Module<T = void> {
alias: string[],
desc: string,
visibility: Visibility,