UNPKG

tf2-item-format

Version:
10 lines (9 loc) 358 B
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;