UNPKG

warscript

Version:

A typescript library for Warcraft III using Warpack.

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