Feature/setup redux async
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Filter activity
- src/types/api.ts 0 → 100644
3 import { organism } from '@/models/organism'; 4 import { projectSchema } from '@/models/project'; 5 6 export interface QueryOptions<Response> { 7 method: 'GET' | 'POST'; 8 path: string; 9 response: Response; 10 } 11 12 export interface Query<Params, Response> { 13 (params: Params): QueryOptions<Response>; 14 } 15 16 export type Project = z.infer<typeof projectSchema>; 17 export type Organism = z.infer<typeof organism>; 18 export type Disease = z.infer<typeof disease>; mentioned in commit 18e5b773
Please register or sign in to reply