Valens-AIO/types/callbacks/HttpCallbacks.d.ts

10 lines
306 B
TypeScript
Raw Normal View History

2022-07-30 00:35:54 -04:00
import { OnLoad } from "../di/OnLoad";
import { IHttpServer } from "../models/spt/server/IHttpServer";
export declare class HttpCallbacks extends OnLoad {
protected httpServer: IHttpServer;
constructor(httpServer: IHttpServer);
onLoad(): void;
getRoute(): string;
getImage(): string;
}