mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-27 09:54:47 +08:00
12 lines
336 B
TypeScript
12 lines
336 B
TypeScript
/**
|
|
* Pinia Stores Export
|
|
* Central export point for all application stores
|
|
*/
|
|
|
|
export { useAuthStore } from './auth';
|
|
export { useAppStore } from './app';
|
|
|
|
// Re-export types for convenience
|
|
export type { User, LoginRequest, RegisterRequest, AuthResponse } from '@/types';
|
|
export type { Toast, ToastType, AppState } from '@/types';
|