-
I am trying to return a response as an array of objects, but there is no way to do it.
Can you advise, please? |
Beta Was this translation helpful? Give feedback.
Answered by
bfaulk96
Sep 7, 2022
Replies: 1 comment
-
You can do export interface MyTest {
id: string;
}
export type Response = MyTest[]; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tihobanov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do