Эквивалент TypeScript:
Код: Выделить всё
let fp: () => void;
fp = () => {
console.log("Hello from inline function declaration!");
};
Подробнее здесь: https://stackoverflow.com/questions/791 ... lsewhere-c
Код: Выделить всё
let fp: () => void;
fp = () => {
console.log("Hello from inline function declaration!");
};