patchwork-mapconverter
Version:
Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator
13 lines (12 loc) • 512 B
TypeScript
import { type Describable } from '../properties/Describable';
import { type Enableable } from '../properties/Enableable';
import { type ScriptContent } from '../properties/ScriptContent';
import { type ContentType, type TriggerContent } from './TriggerContent';
interface ScriptedTrigger extends TriggerContent, Enableable, Describable, ScriptContent {
name: string;
contentType: ContentType;
description: string;
isEnabled: boolean;
runOnMapInit: boolean;
}
export type { ScriptedTrigger };