deprecate a few things that i impusively added lol

This commit is contained in:
jacob
2024-02-15 12:36:00 -06:00
parent 4efdbb21fb
commit 86ebb221ed
2 changed files with 8 additions and 4 deletions

View File

@@ -19,7 +19,14 @@ export interface ModuleManager extends MetadataAccess {
get(id: string): Module | undefined;
set(id: string, path: Module): void;
/**
* @deprecated
*/
getPublishableCommands(): CommandModule[];
/*
* @deprecated
*/
getByNameCommandType<T extends CommandType>(
name: string,
commandType: T,