UNPKG

react-native-worklets

Version:
11 lines (8 loc) 293 B
'use strict'; import { WorkletsError } from '../debug/WorkletsError'; import type { Synchronizable } from './types'; export function isSynchronizable<TValue>( _value: unknown ): _value is Synchronizable<TValue> { throw new WorkletsError('`isSynchronizable` is not supported on web.'); }