@mann-conomy/tf-particle-effects
Version:
A Node.js wrapper for Team Fortress 2's in-game particle effects.
13 lines (12 loc) • 355 B
TypeScript
import type { IParticleAttribute } from "../types/particle";
export default class ParticleAttribute {
private readonly id;
private readonly name;
constructor(id: number, name: string);
getId(): number;
getName(): string;
json(): IParticleAttribute;
stringify(): string;
toString(): string;
copy(): ParticleAttribute;
}