two-slot-extended-mags/types/services/MatchLocationService.d.ts

10 lines
344 B
TypeScript
Raw Normal View History

2024-08-05 20:33:00 +10:00
import { SaveServer } from "@spt/servers/SaveServer";
import { TimeUtil } from "@spt/utils/TimeUtil";
2023-06-11 15:10:34 +10:00
export declare class MatchLocationService {
protected timeUtil: TimeUtil;
2024-04-03 20:15:11 +11:00
protected saveServer: SaveServer;
2023-06-11 15:10:34 +10:00
protected locations: {};
2024-04-03 20:15:11 +11:00
constructor(timeUtil: TimeUtil, saveServer: SaveServer);
2023-06-11 15:10:34 +10:00
deleteGroup(info: any): void;
}