import { bundleState } from '../bundle-state'; import { STATE_KEY, type GlobalSlot } from '../get-shared'; export function resetSharedImpl(): void { const slot = globalThis as unknown as GlobalSlot; delete slot[STATE_KEY]; bundleState.isSdkInitializer = false; }