10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
import { OnLoad } from "../di/OnLoad";
|
|
import { IHttpServer } from "../models/spt/server/IHttpServer";
|
|
export declare class HttpCallbacks extends OnLoad {
|
|
protected httpServer: IHttpServer;
|
|
constructor(httpServer: IHttpServer);
|
|
onLoad(): void;
|
|
getRoute(): string;
|
|
getImage(): string;
|
|
}
|