13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
/**
|
|
* Re-export del store de Pinia como composable, paralelo a `useFavorites`.
|
|
*
|
|
* La fuente única de verdad es `app/stores/history.ts`.
|
|
*/
|
|
export { useHistoryStore as useHistory } from '~/stores/history'
|
|
export type {
|
|
HistoryItem,
|
|
HistoryFile,
|
|
ImportResult,
|
|
Collection
|
|
} from '~/stores/history'
|