typescript add type to function code example
Example 1: types function typescript
interface Safer_Easy_Fix {
title: string;
callback: () => void;
}
interface Alternate_Syntax_4_Safer_Easy_Fix {
title: string;
callback(): void;
}
Example 2: typescript function type
function sayHello(name: string): string {
console.log(`Hello, ${name}`!);
}
sayHello('Bob');
Example 3: typescript function type
interface Date {
toString(): string;
setTime(time: number): number;
}
Example 4: types function typescript
interface Easy_Fix_Solution {
title: string;
callback: Function;
}
Example 5: function with return type in angular
greet() : number {
return "Hello, " + this.greeting;
}