mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 13:11:17 +00:00
Surfaces provider errors through RefreshResult.errors instead of silently ignoring them. Co-authored-by: Ona <no-reply@ona.com>
25 lines
734 B
TypeScript
25 lines
734 B
TypeScript
// Context
|
|
export type { Context, ContextKey } from "./context"
|
|
export { contextKey, contextValue } from "./context"
|
|
|
|
// Feed
|
|
export type { FeedItem } from "./feed"
|
|
|
|
// Data Source
|
|
export type { DataSource } from "./data-source"
|
|
|
|
// Context Provider
|
|
export type { ContextProvider } from "./context-provider"
|
|
|
|
// Context Bridge
|
|
export type { ProviderError, RefreshResult } from "./context-bridge"
|
|
export { ContextBridge } from "./context-bridge"
|
|
|
|
// Reconciler
|
|
export type { ReconcileResult, ReconcilerConfig, SourceError } from "./reconciler"
|
|
export { Reconciler } from "./reconciler"
|
|
|
|
// Feed Controller
|
|
export type { FeedControllerConfig, FeedSubscriber } from "./feed-controller"
|
|
export { FeedController } from "./feed-controller"
|