ClearVision/types/callbacks/HttpCallbacks.d.ts
2022-10-06 23:29:01 -04:00

10 lines
292 B
TypeScript

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