|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- export type Guitar = {
- id: string
- attributes: {
- name: string
- description: string
- price: number
- createdAt: number
- maker: Maker
- status: Status
- image: Image
- }
- }
-
- export type Maker = {
- data: {
- id: string
- attributes: {
- name: string
- }
- }
- }
-
- export type Status = {
- data: {
- id: string
- attributes: {
- name: string
- }
- }
- }
-
- export type Image = {
- data: [
- {
- id: string
- attributes: {
- name: string
- url: string
- }
- }
- ]
- }
-
- export type GuitarResponse = {
- guitars: Guitar[]
- }
|