UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

7 lines (6 loc) 215 B
import { Task } from '@/types' import { fetchJson } from '../http/fetchJson' import { API_BASE } from '../constants' export function getTasks(): Promise<Task[]> { return fetchJson<Task[]>(`${API_BASE}/tasks`) }