Valens-Progression/types/callbacks/HttpCallbacks.d.ts
2023-02-12 23:21:22 -05:00

10 lines
304 B
TypeScript

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