//go:build !wasm //:build !wasm package store // Worker-internal bridge for store.wasm. // Provides postMessage send/receive and timer primitives for the store Worker. func WorkerOnMessage(fn func(msg string)) { panic("jsbridge") } func WorkerPost(msg string) { panic("jsbridge") } func WorkerSetTimeout(ms int32, fn func()) (n int32) { panic("jsbridge") } func WorkerClearTimeout(handle int32) { panic("jsbridge") } func WorkerNowSeconds() (n int64) { panic("jsbridge") }