ScavXpCounts/types/services/MatchLocationService.d.ts

10 lines
352 B
TypeScript
Raw Normal View History

2024-04-19 21:23:52 -06:00
import { SaveServer } from "@spt-aki/servers/SaveServer";
2024-02-23 15:06:00 -07:00
import { TimeUtil } from "@spt-aki/utils/TimeUtil";
2023-08-17 19:49:16 -06:00
export declare class MatchLocationService {
protected timeUtil: TimeUtil;
2024-04-19 21:23:52 -06:00
protected saveServer: SaveServer;
2023-08-17 19:49:16 -06:00
protected locations: {};
2024-04-19 21:23:52 -06:00
constructor(timeUtil: TimeUtil, saveServer: SaveServer);
2023-08-17 19:49:16 -06:00
deleteGroup(info: any): void;
}