react-native-worklets
Version:
The React Native multithreading library
13 lines (12 loc) • 447 B
JavaScript
;
import { WorkletsError } from './debug/WorkletsError';
export function createWorkletRuntime() {
throw new WorkletsError('`createWorkletRuntime` is not supported on web.');
}
export function runOnRuntime() {
throw new WorkletsError('`runOnRuntime` is not supported on web.');
}
export function scheduleOnRuntime() {
throw new WorkletsError('`scheduleOnRuntime` is not supported on web.');
}
//# sourceMappingURL=runtimes.js.map