2024-11-12 11:51:30 -07:00
|
|
|
import { OnLoad } from "@spt/di/OnLoad";
|
|
|
|
import { PostSptModLoader } from "@spt/loaders/PostSptModLoader";
|
|
|
|
import { IHttpConfig } from "@spt/models/spt/config/IHttpConfig";
|
|
|
|
import { ILogger } from "@spt/models/spt/utils/ILogger";
|
|
|
|
import { ConfigServer } from "@spt/servers/ConfigServer";
|
|
|
|
import { LocalisationService } from "@spt/services/LocalisationService";
|
|
|
|
import { HttpFileUtil } from "@spt/utils/HttpFileUtil";
|
|
|
|
import { HttpResponseUtil } from "@spt/utils/HttpResponseUtil";
|
2024-02-23 15:06:00 -07:00
|
|
|
export declare class ModCallbacks implements OnLoad {
|
2023-08-17 19:49:16 -06:00
|
|
|
protected logger: ILogger;
|
|
|
|
protected httpResponse: HttpResponseUtil;
|
|
|
|
protected httpFileUtil: HttpFileUtil;
|
2024-11-12 11:51:30 -07:00
|
|
|
protected postSptModLoader: PostSptModLoader;
|
2023-08-17 19:49:16 -06:00
|
|
|
protected localisationService: LocalisationService;
|
|
|
|
protected configServer: ConfigServer;
|
|
|
|
protected httpConfig: IHttpConfig;
|
2024-11-12 11:51:30 -07:00
|
|
|
constructor(logger: ILogger, httpResponse: HttpResponseUtil, httpFileUtil: HttpFileUtil, postSptModLoader: PostSptModLoader, localisationService: LocalisationService, configServer: ConfigServer);
|
2023-08-17 19:49:16 -06:00
|
|
|
onLoad(): Promise<void>;
|
|
|
|
getRoute(): string;
|
|
|
|
}
|