Files
shadow-gunbuilder-ai-proto/types/gunbuilder.ts
T
2025-11-25 16:26:54 -05:00

25 lines
372 B
TypeScript

export type CategoryId =
| "lower"
| "upper"
| "barrel"
| "handguard"
| "stock"
| "optic";
export interface Category {
id: CategoryId;
name: string;
description?: string;
}
export interface Part {
id: string;
name: string;
brand: string;
categoryId: CategoryId;
price: number;
affiliateUrl: string;
imageUrl?: string;
notes?: string;
}