tf2-item-format
Version:
Format's TF2 items like backpack.tf does
10 lines (9 loc) • 358 B
TypeScript
import { ItemAttributes, StrigifySKUAttributes } from './types';
import { ISchema } from './types/schema';
export type StringifyOptions = {
determineUniqueHat?: boolean;
};
/**
* Stringifies item object into item name
*/
export default function (schema: ISchema, attributes: StrigifySKUAttributes | ItemAttributes, options?: StringifyOptions): string;