tf2-item-format
Version:
Format's TF2 items like backpack.tf does
11 lines (10 loc) • 551 B
TypeScript
import Attributes from '../parseString/Attributes';
import { ISchema } from '../types/schema';
/**
* Signalizes if `The` is at the start of name.
* Only happens to hats with unique quality.
*/
export default function isUniqueHat(schema: ISchema, name: string, attributes?: Attributes): boolean;
export declare function isUniqueHatException(schema: ISchema, name: string, exact: boolean): boolean;
export declare function getUniqueHatExceptions(schema: ISchema): string[];
export declare function findUniqueHatExceptions(schema: ISchema): string[];