10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
|
import { OnLoad } from "../di/OnLoad";
|
||
|
import { HttpServer } from "../servers/HttpServer";
|
||
|
export declare class HttpCallbacks extends OnLoad {
|
||
|
protected httpServer: HttpServer;
|
||
|
constructor(httpServer: HttpServer);
|
||
|
onLoad(): Promise<void>;
|
||
|
getRoute(): string;
|
||
|
getImage(): string;
|
||
|
}
|