Ugh. Bad rebase.

This commit is contained in:
2023-08-07 22:12:09 -04:00
parent 1260cd5a8b
commit ac85b16cd8

6
src/types/guns.d.ts vendored
View File

@@ -1,13 +1,13 @@
export interface Guns { export interface Guns {
id: Number id: number
make: string make: string
model: string model: string
value_amount: Number value_amount: number
purchase_amount: number purchase_amount: number
photos: Array<Photo> photos: Array<Photo>
} }
export interface Photo { export interface Photo {
id: Number id: number
file_name: string file_name: string
} }