ClearVision/types/loaders/PostDBModLoader.d.ts

12 lines
444 B
TypeScript
Raw Normal View History

2022-07-09 16:03:26 -04:00
import { DependencyContainer } from "tsyringe";
import { OnLoad } from "../di/OnLoad";
2022-10-06 23:29:01 -04:00
import { PreAkiModLoader } from "./PreAkiModLoader";
export declare class PostDBModLoader implements OnLoad {
protected preAkiModLoader: PreAkiModLoader;
constructor(preAkiModLoader: PreAkiModLoader);
2022-07-09 16:03:26 -04:00
onLoad(): void;
getRoute(): string;
getModPath(mod: string): string;
protected executeMods(container: DependencyContainer): void;
}