patchwork-mapconverter
Version:
Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator
12 lines (11 loc) • 325 B
TypeScript
import { type ContentType, type TriggerContent } from './TriggerContent';
interface GlobalVariable extends TriggerContent {
name: string;
contentType: ContentType;
type: string;
isArray: boolean;
arrayLength: number;
isInitialized: boolean;
initialValue: string;
}
export type { GlobalVariable };