patchwork-mapconverter
Version:
Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator
14 lines (11 loc) • 317 B
text/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 }