/** * @sigx/reactivity internal APIs * * ⚠️ These are low-level primitives for building custom renderers and plugins. * They are NOT part of the public API and may change without notice. * * @internal */ export { track, trigger, cleanup, setFlushHandler, collectSetupScope, takeSetupDisposers } from './effect'; export { getSignalId } from './signal'; export { traverse as deepTrack } from './watch'; export { DEVTOOLS_HOOK_KEY, getDevtoolsHook, ensureDevtoolsHook, withoutOwnerTracking, getReactiveById, notifySignalUpdated, } from './devtools-hook'; export type { DevtoolsHook, DevtoolsEventBase, DevtoolsListenerBase, } from './devtools-hook'; export type { ReactivityDevtoolsEvent, ReactivityKind, } from './devtools-events'; //# sourceMappingURL=internals.d.ts.map