17 lines
761 B
TypeScript
17 lines
761 B
TypeScript
import { BundleLoader } from "@spt-aki/loaders/BundleLoader";
|
|
import { IHttpConfig } from "@spt-aki/models/spt/config/IHttpConfig";
|
|
import { ConfigServer } from "@spt-aki/servers/ConfigServer";
|
|
import { HttpResponseUtil } from "@spt-aki/utils/HttpResponseUtil";
|
|
export declare class BundleCallbacks {
|
|
protected httpResponse: HttpResponseUtil;
|
|
protected bundleLoader: BundleLoader;
|
|
protected configServer: ConfigServer;
|
|
protected httpConfig: IHttpConfig;
|
|
constructor(httpResponse: HttpResponseUtil, bundleLoader: BundleLoader, configServer: ConfigServer);
|
|
/**
|
|
* Handle singleplayer/bundles
|
|
*/
|
|
getBundles(url: string, info: any, sessionID: string): string;
|
|
getBundle(url: string, info: any, sessionID: string): string;
|
|
}
|