/** * Interface for a WASM spin lock */ export interface IWasmSpinLock { wait(): void; }