2022-08-17 02:29:54 -04: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);
|
2022-12-25 18:45:30 -05:00
|
|
|
onLoad(): Promise<void>;
|
2022-08-17 02:29:54 -04:00
|
|
|
getRoute(): string;
|
|
|
|
getModPath(mod: string): string;
|
|
|
|
protected executeMods(container: DependencyContainer): void;
|
|
|
|
}
|