2022-07-09 16:03:26 -04:00
|
|
|
import { OnLoad } from "../di/OnLoad";
|
2022-10-06 23:29:01 -04:00
|
|
|
import { PostAkiModLoader } from "../loaders/PostAkiModLoader";
|
2022-07-09 16:03:26 -04:00
|
|
|
import { IHttpConfig } from "../models/spt/config/IHttpConfig";
|
|
|
|
import { ILogger } from "../models/spt/utils/ILogger";
|
|
|
|
import { ConfigServer } from "../servers/ConfigServer";
|
2023-05-18 15:57:25 -04:00
|
|
|
import { LocalisationService } from "../services/LocalisationService";
|
2022-10-06 23:29:01 -04:00
|
|
|
import { HttpFileUtil } from "../utils/HttpFileUtil";
|
2022-07-09 16:03:26 -04:00
|
|
|
import { HttpResponseUtil } from "../utils/HttpResponseUtil";
|
2023-05-18 15:57:25 -04:00
|
|
|
declare class ModCallbacks implements OnLoad {
|
2022-07-09 16:03:26 -04:00
|
|
|
protected logger: ILogger;
|
|
|
|
protected httpResponse: HttpResponseUtil;
|
2022-10-06 23:29:01 -04:00
|
|
|
protected httpFileUtil: HttpFileUtil;
|
|
|
|
protected postAkiModLoader: PostAkiModLoader;
|
2023-05-18 15:57:25 -04:00
|
|
|
protected localisationService: LocalisationService;
|
2022-07-09 16:03:26 -04:00
|
|
|
protected configServer: ConfigServer;
|
|
|
|
protected httpConfig: IHttpConfig;
|
2023-05-18 15:57:25 -04:00
|
|
|
constructor(logger: ILogger, httpResponse: HttpResponseUtil, httpFileUtil: HttpFileUtil, postAkiModLoader: PostAkiModLoader, localisationService: LocalisationService, configServer: ConfigServer);
|
|
|
|
onLoad(): Promise<void>;
|
2022-07-09 16:03:26 -04:00
|
|
|
getRoute(): string;
|
|
|
|
}
|
|
|
|
export { ModCallbacks };
|