patchwork-mapconverter
Version:
Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator
13 lines (12 loc) • 539 B
TypeScript
import { StatementType } from '../translator/data/statement/StatementType';
declare enum TriggerDataSections {
TRIGGER_ACTIONS = "TriggerActions",
TRIGGER_EVENTS = "TriggerEvents",
TRIGGER_CONDITIONS = "TriggerConditions",
TRIGGER_CALLS = "TriggerCalls"
}
declare const TriggerDataRegistry: {
loadTriggerData: (triggerDataFilePath: string) => void;
getParameterCount: (classification: StatementType | TriggerDataSections, name: string) => number | undefined;
};
export { TriggerDataSections, TriggerDataRegistry };