| 1 | import { task } from "@capsule-run/sdk"; |
| 2 | |
| 3 | interface Post { |
| 4 | id: number; |
| 5 | title: string; |
| 6 | body: string; |
| 7 | userId: number; |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Fetch posts from JSONPlaceholder API. |
nothing calls this directly
no outgoing calls
no test coverage detected