ScavXpCounts/types/callbacks/HttpCallbacks.d.ts

10 lines
316 B
TypeScript
Raw Normal View History

2024-02-23 15:06:00 -07:00
import { OnLoad } from "@spt-aki/di/OnLoad";
import { HttpServer } from "@spt-aki/servers/HttpServer";
2023-08-17 19:49:16 -06:00
export declare class HttpCallbacks implements OnLoad {
protected httpServer: HttpServer;
constructor(httpServer: HttpServer);
onLoad(): Promise<void>;
getRoute(): string;
getImage(): string;
}