'use strict'; import type { Synchronizable } from './synchronizable'; export function isSynchronizable( value: unknown ): value is Synchronizable { return ( typeof value === 'object' && value !== null && '__synchronizableRef' in value && value.__synchronizableRef === true ); }