ScavXpCounts/types/callbacks/HttpCallbacks.d.ts
2024-11-12 11:51:30 -07:00

10 lines
308 B
TypeScript

import { OnLoad } from "@spt/di/OnLoad";
import { HttpServer } from "@spt/servers/HttpServer";
export declare class HttpCallbacks implements OnLoad {
protected httpServer: HttpServer;
constructor(httpServer: HttpServer);
onLoad(): Promise<void>;
getRoute(): string;
getImage(): string;
}