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;
|
|
|
|
}
|