patchwork-mapconverter
Version:
Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator
10 lines (9 loc) • 321 B
TypeScript
import { type Statement } from '../statement/Statement';
import { type StatementType } from '../statement/StatementType';
import { type Parameter } from './Parameter';
interface FunctionCall extends Parameter {
name: string;
statementType: StatementType;
statement: Statement;
}
export type { FunctionCall };