@tractorzoom/equipment-attributes
Version:
Source of truth for equipment attributes by category
11 lines (10 loc) • 547 B
TypeScript
import { Attribute } from './attributes';
export declare const IDENTIFYING_ATTRIBUTES: Attribute[];
export declare const LOCATION_ATTRIBUTES: Attribute[];
export declare const VALUE_ATTRIBUTES: Attribute[];
export declare const COMMON_ATTRIBUTES: Attribute[];
export declare const getAttributesForCategory: (categoryName: string) => Attribute[];
export declare const getTopAttributesForCategory: (categoryName: string) => Attribute[];
export declare const getClearableAttributesForCategory: (categoryName: string) => {
[key: string]: null;
};