2023-01-15 09:44:31 +11:00
|
|
|
import { OnLoad } from "../di/OnLoad";
|
|
|
|
import { HttpServer } from "../servers/HttpServer";
|
2023-02-13 20:05:30 +11:00
|
|
|
export declare class HttpCallbacks implements OnLoad {
|
2023-01-15 09:44:31 +11:00
|
|
|
protected httpServer: HttpServer;
|
|
|
|
constructor(httpServer: HttpServer);
|
|
|
|
onLoad(): Promise<void>;
|
|
|
|
getRoute(): string;
|
|
|
|
getImage(): string;
|
|
|
|
}
|