mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-09 01:24:46 +08:00
16 lines
548 B
TypeScript
16 lines
548 B
TypeScript
/**
|
|
* Pinia Stores Export
|
|
* Central export point for all application stores
|
|
*/
|
|
|
|
export { useAuthStore } from './auth'
|
|
export { useAppStore } from './app'
|
|
export { useAdminSettingsStore } from './adminSettings'
|
|
export { useSubscriptionStore } from './subscriptions'
|
|
export { useOnboardingStore } from './onboarding'
|
|
export { useAnnouncementStore } from './announcements'
|
|
|
|
// Re-export types for convenience
|
|
export type { User, LoginRequest, RegisterRequest, AuthResponse } from '@/types'
|
|
export type { Toast, ToastType, AppState } from '@/types'
|