15 lines
364 B
TypeScript
15 lines
364 B
TypeScript
// ===================
|
|
// © AngelaMos | 2026
|
|
// index.ts
|
|
//
|
|
// Barrel export for the API layer
|
|
//
|
|
// Re-exports all TanStack Query hooks (useAlerts,
|
|
// useModelStatus, useRetrain, useStats, useThreats,
|
|
// useThreat) and Zod-validated type definitions from the
|
|
// hooks and types sub-modules
|
|
// ===================
|
|
|
|
export * from './hooks'
|
|
export * from './types'
|