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

10 lines
301 B
TypeScript
Raw Normal View History

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