UNPKG

warscript

Version:

A typescript library for Warcraft III using Warpack.

11 lines (10 loc) 501 B
/** @noSelfInFile */ import { AbilityType, AbilityTypeId } from "../ability-type"; import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry"; export declare class RecallAbilityType extends AbilityType { static readonly BASE_ID: AbilityTypeId; get targetCount(): number[]; set targetCount(targetCount: ObjectDataEntryLevelFieldValueSupplier<number>); get usesClustering(): boolean[]; set usesClustering(usesClustering: ObjectDataEntryLevelFieldValueSupplier<boolean>); }