interface User { id: number; firstName: string; } axios.get<User[]>('http://localhost:8080/admin/users') .then(response => ...
確定! 回上一頁