2022-08-17 02:29:54 -04:00
|
|
|
import { OnLoad } from "../di/OnLoad";
|
|
|
|
import { PostAkiModLoader } from "../loaders/PostAkiModLoader";
|
|
|
|
import { IHttpConfig } from "../models/spt/config/IHttpConfig";
|
|
|
|
import { ILogger } from "../models/spt/utils/ILogger";
|
|
|
|
import { ConfigServer } from "../servers/ConfigServer";
|
2022-12-25 18:45:30 -05:00
|
|
|
import { LocalisationService } from "../services/LocalisationService";
|
|
|
|
import { HttpFileUtil } from "../utils/HttpFileUtil";
|
2022-08-17 02:29:54 -04:00
|
|
|
import { HttpResponseUtil } from "../utils/HttpResponseUtil";
|
2023-02-12 23:21:22 -05:00
|
|
|
declare class ModCallbacks implements OnLoad {
|
2022-08-17 02:29:54 -04:00
|
|
|
protected logger: ILogger;
|
|
|
|
protected httpResponse: HttpResponseUtil;
|
2022-12-25 18:45:30 -05:00
|
|
|
protected httpFileUtil: HttpFileUtil;
|
2022-08-17 02:29:54 -04:00
|
|
|
protected postAkiModLoader: PostAkiModLoader;
|
2022-12-25 18:45:30 -05:00
|
|
|
protected localisationService: LocalisationService;
|
2022-08-17 02:29:54 -04:00
|
|
|
protected configServer: ConfigServer;
|
|
|
|
protected httpConfig: IHttpConfig;
|
2022-12-25 18:45:30 -05:00
|
|
|
constructor(logger: ILogger, httpResponse: HttpResponseUtil, httpFileUtil: HttpFileUtil, postAkiModLoader: PostAkiModLoader, localisationService: LocalisationService, configServer: ConfigServer);
|
|
|
|
onLoad(): Promise<void>;
|
2022-08-17 02:29:54 -04:00
|
|
|
getRoute(): string;
|
|
|
|
}
|
|
|
|
export { ModCallbacks };
|