mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
21 lines
739 B
TypeScript
21 lines
739 B
TypeScript
export type { AsyncStatus, MutationResult, OptimisticResult } from './controllers';
|
|
export {
|
|
MutationController,
|
|
OptimisticController,
|
|
RequestController,
|
|
SelectorController,
|
|
TasksController,
|
|
} from './controllers';
|
|
|
|
// createStore factory (returns bound controllers)
|
|
export { createStore } from './create-store';
|
|
export type { contextKey, CreateStoreConfig, CreateStoreHost, CreateStoreResult } from './create-store';
|
|
|
|
// Mixin factories (for advanced use cases)
|
|
export { createStoreAttachMixin, createStoreMixin, createStoreProviderMixin } from './mixins';
|
|
|
|
// StoreAccessor (for custom controllers)
|
|
export { StoreAccessor, type StoreAccessorHost } from './store-accessor';
|
|
|
|
export type { StoreSource } from './store-accessor';
|