Amba-Agent-App/lib/stores/index.ts
2026-01-16 00:22:35 +03:00

12 lines
432 B
TypeScript

// Export all stores from a single location
export { useAuthStore } from "./authStore";
export { useContactsStore } from "./contactsStore";
export { useRecipientsStore } from "./recipientsStore";
export { useTabStore } from "./tabStore";
export { usePinStore } from "./pinStore";
export { useUiStore } from "./uiStore";
export { useLangStore } from "./langStore";
// Re-export types
export type { Contact } from "./contactsStore";