Files
vibe-kanban/shared/types.ts
Louis Knight-Webb 563994934d Init
2025-06-14 15:14:08 -04:00

15 lines
233 B
TypeScript

// Shared types between frontend and backend
export interface ApiResponse<T> {
success: boolean
data?: T
message?: string
}
export interface HelloResponse {
message: string
}
export interface HelloQuery {
name?: string
}