import { ShutdownChannel } from '@livestore/common/leader-thread' import type { Effect, Scope } from '@livestore/utils/effect' import { makeBroadcastChannel } from './webchannel.ts' export const makeShutdownChannel = ( storeId: string, ): Effect.Effect => makeBroadcastChannel({ channelName: `livestore.shutdown.${storeId}`, schema: ShutdownChannel.All, })