UNPKG

@mann-conomy/tf-war-paints

Version:

A static Node.js wrapper for Team Fortress 2's many War Paints.

10 lines (9 loc) 294 B
import type { IPaintAttributes } from "../types/warpaints"; export default class PaintAttribute { protected readonly id: number; protected readonly name: string; constructor(options?: Partial<IPaintAttributes>); isValid(): boolean; getId(): number; getName(): string; }