typescript func code example
Example 1: typescript function
function add(x: number, y: number): number {
return x + y;
}
let myAdd = function (x: number, y: number): number {
return x + y;
};
Example 2: types function typescript
interface Easy_Fix_Solution {
title: string;
callback: Function;
}
Example 3: types function typescript
interface Alternate_Syntax_4_Advanced {
title: string;
callback<T extends unknown[], R = unknown>(...args?: T): R;
}
Example 4: typescript annotate return type
function add(x: number, y: number): number {
return x + y;
}