Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | import { Record } from './generateRequest'; export type SearchItemResponse = { id: number; visible_id: string; record: Record; name: string; product_number: string; description: string; purchase_year: number | null; purchase_price: number | null; durability: number | null; is_depreciation: boolean; connector: string[]; is_rent: boolean; color: string; created_at: string; updated_at: string; recipient: string; rental_description: string; latest_rent_at: string | null; scheduled_replace_at: string | null; latest_replace_at: string | null; }; export type SearchItemsResponse = { search_items: SearchItemResponse[]; }; |