2023-10-19 17:21:17 +00:00
|
|
|
import { ILocationBase } from "@spt-aki/models/eft/common/ILocationBase";
|
|
|
|
import { ILocationsGenerateAllResponse } from "@spt-aki/models/eft/common/ILocationsSourceDestinationBase";
|
|
|
|
import { IGetBodyResponseData } from "@spt-aki/models/eft/httpResponse/IGetBodyResponseData";
|
|
|
|
import { IGetLocationRequestData } from "@spt-aki/models/eft/location/IGetLocationRequestData";
|
2023-03-03 15:23:46 +00:00
|
|
|
|
|
|
|
export interface ILocationCallbacks
|
|
|
|
{
|
|
|
|
getLocationData(url: string, info: any, sessionID: string): IGetBodyResponseData<ILocationsGenerateAllResponse>;
|
|
|
|
getLocation(url: string, info: IGetLocationRequestData, sessionID: string): IGetBodyResponseData<ILocationBase>;
|
|
|
|
}
|