Libentry.mock.ets 135 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 const NativeMock: Record<string, Object> = { 'add': (a: number, b: number) => { return a + b; }, }; export default NativeMock;