a + b;
}
export const init = () => {
sum(1,2);
sum(3,4);
}
tsx
// index
import { init } from 'core';
const sum = (a, b) => {
console.log('index')
return a + b;
}
init();
Ребят. Вопросик есть. Как заставить init вызывать sum из index? Менять можно только файл index.ts
import { init } from 'core'; init(); const sum = (a, b) => { console.log('index'); return a + b; }; sum(1, 2);
а экспортировать sum из core нельзя? в таком случае в файле index его можно было переопределить
Ты вызывать должен init, а не sum. В твоем случае он все равно дергает sum, который в core
import { sumIndex } from './index'; export const init = () => { sumIndex(1,2); sumIndex(3,4); } export const sumIndex = (a, b) => { console.log('index') return a + b; } init(); попробуй это.....
https://codesandbox.io/s/sleepy-hooks-cqjpg7?file=/src/tests/sum.test.ts
я отредактировал там код
Не, скинь свой форк)
https://dpaste.com/DX5SEKC3Z
я не понял твоего решения
ошибок нет
при использовании передавать
sum.ts это условие задачи ??
Обсуждают сегодня