ScavXpCounts/types/services/MatchLocationService.d.ts

10 lines
344 B
TypeScript
Raw Normal View History

2024-11-12 11:51:30 -07:00
import { SaveServer } from "@spt/servers/SaveServer";
import { TimeUtil } from "@spt/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;
}