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