warscript
Version:
A typescript library for Warcraft III using Warpack.
9 lines (8 loc) • 446 B
TypeScript
/** @noSelfInFile */
import { AbilityType, AbilityTypeId } from "../ability-type";
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
export declare class AutoAttackSpeedIncreaseAbilityType extends AbilityType {
static readonly BASE_ID: AbilityTypeId;
get autoAttackSpeedIncreaseFactor(): number[];
set autoAttackSpeedIncreaseFactor(autoAttackSpeedIncreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
}