Moved types to folder

This commit is contained in:
Alexis
2026-03-24 21:51:58 +01:00
parent 5a52b08107
commit 2685a7c868
4 changed files with 44 additions and 41 deletions

6
src/types/Api.ts Normal file
View File

@@ -0,0 +1,6 @@
import type { BikeParking } from './Bikes'
export interface ApiResponse {
total_count: number
results: BikeParking[]
}