define function type in typescript code example
Example 1: types function typescript
interface Easy_Fix_Solution {
title: string;
callback: Function;
}
Example 2: types function typescript
interface Param {
title: string;
callback: function;
}