7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
import type { BikeParking } from './Bikes'
|
|
|
|
export interface ApiResponse {
|
|
total_count: number
|
|
results: BikeParking[]
|
|
}
|