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