UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

14 lines (13 loc) 281 B
/** * Represents a type of effect - like poison - that can be * applied to an entity. */ export default class EffectType { /** * @remarks * Identifier name of this effect type. * @returns * Identifier of the effect type. */ getName(): string; }