create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
24 lines (20 loc) • 491 B
text/typescript
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-nocheck
import MutableValue from './MutableValue';
global._setGlobalConsole = (_val) => {
// noop
};
const NOOP = () => {
// noop
};
export default {
installCoreFunctions: NOOP,
makeShareable: (worklet) => worklet,
makeMutable: (init) => new MutableValue(init),
makeRemote: NOOP,
startMapper: NOOP,
stopMapper: NOOP,
registerEventHandler: NOOP,
unregisterEventHandler: NOOP,
getViewProp: NOOP,
};