import { Store } from "./store.js"; //#region src/core/config.d.ts interface StoreCallbacks { onSetup?: (ctx: StoreSetupContext) => void; onAttach?: (ctx: StoreAttachContext) => void; onError?: (ctx: StoreErrorContext) => void; } interface StoreSetupContext { store: Store; signal: AbortSignal; } interface StoreAttachContext { store: Store; target: Target; signal: AbortSignal; } interface StoreErrorContext { store: Store; error: unknown; } //#endregion export { StoreAttachContext, StoreCallbacks, StoreErrorContext, StoreSetupContext }; //# sourceMappingURL=config.d.ts.map