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

10 lines
301 B
TypeScript
Raw Normal View History

import { OnLoad } from "../di/OnLoad";
2022-12-25 18:45:30 -05:00
import { HttpServer } from "../servers/HttpServer";
export declare class HttpCallbacks extends OnLoad {
2022-12-25 18:45:30 -05:00
protected httpServer: HttpServer;
constructor(httpServer: HttpServer);
onLoad(): Promise<void>;
getRoute(): string;
getImage(): string;
}