ts function as type code example
Example 1: typescript function type
interface Date {
toString(): string;
setTime(time: number): number;
// ...
}
Example 2: typescript annotate return type
function add(x: number, y: number): number {
return x + y;
}