two-slot-extended-mags/types/helpers/GameEventHelper.d.ts

10 lines
467 B
TypeScript
Raw Permalink Normal View History

import { ISeasonalEventConfig } from "@spt/models/spt/config/ISeasonalEventConfig";
import { ConfigServer } from "@spt/servers/ConfigServer";
import { DatabaseServer } from "@spt/servers/DatabaseServer";
2023-06-11 15:10:34 +10:00
export declare class GameEventHelper {
protected databaseServer: DatabaseServer;
protected configServer: ConfigServer;
protected seasonalEventConfig: ISeasonalEventConfig;
constructor(databaseServer: DatabaseServer, configServer: ConfigServer);
}