@mann-conomy/tf-particle-effects
Version:
A Node.js wrapper for Team Fortress 2's in-game particle effects.
9 lines (8 loc) • 683 B
TypeScript
import type { LanguageCode } from "@mann-conomy/tf-parser";
import type { IParticleAttribute, IParticleEffect } from "../types/particle";
export declare function isUndefinedOrEmpty(attributes: IParticleAttribute[]): boolean;
export declare function compareById(attribute: IParticleAttribute, id: number): boolean;
export declare function getLanguageTranslation(language: LanguageCode): string;
export declare function getLanguageSubtag(translation: string): string;
export declare function compareByIdOrName(attribute: IParticleAttribute, effect: IParticleEffect): boolean;
export declare function compareByIdAndName(attribute: IParticleAttribute, effect: IParticleEffect): boolean;