eyes-of-a-trader/types/loaders/PostDBModLoader.d.ts

12 lines
453 B
TypeScript
Raw Normal View History

2023-01-15 09:44:31 +11:00
import { DependencyContainer } from "tsyringe";
import { OnLoad } from "../di/OnLoad";
import { PreAkiModLoader } from "./PreAkiModLoader";
export declare class PostDBModLoader implements OnLoad {
protected preAkiModLoader: PreAkiModLoader;
constructor(preAkiModLoader: PreAkiModLoader);
onLoad(): Promise<void>;
getRoute(): string;
getModPath(mod: string): string;
protected executeMods(container: DependencyContainer): void;
}