typescript type of a function code example
Example 1: typescript function type
function sayHello(name: string): string {
console.log(`Hello, ${name}`!);
}
sayHello('Bob');
Example 2: typescript function type
interface Date {
toString(): string;
setTime(time: number): number;
}
Example 3: types function typescript
interface Easy_Fix_Solution {
title: string;
callback: Function;
}
Example 4: types function typescript
interface Param {
title: string;
callback: function;
}
Example 5: types function typescript
interface Alternate_Syntax_4_Advanced {
title: string;
callback<T extends unknown[], R = unknown>(...args?: T): R;
}