ClearVision/types/callbacks/HttpCallbacks.d.ts

10 lines
292 B
TypeScript
Raw Normal View History

2022-07-09 16:03:26 -04:00
import { OnLoad } from "../di/OnLoad";
2022-10-06 23:29:01 -04:00
import { HttpServer } from "../servers/HttpServer";
2022-07-09 16:03:26 -04:00
export declare class HttpCallbacks extends OnLoad {
2022-10-06 23:29:01 -04:00
protected httpServer: HttpServer;
constructor(httpServer: HttpServer);
2022-07-09 16:03:26 -04:00
onLoad(): void;
getRoute(): string;
getImage(): string;
}