ClearVision/types/loaders/PostDBModLoader.d.ts
2022-10-06 23:29:01 -04:00

12 lines
444 B
TypeScript

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(): void;
getRoute(): string;
getModPath(mod: string): string;
protected executeMods(container: DependencyContainer): void;
}