typescript func t code example
Example 1: typescript function type
interface Date {
toString(): string;
setTime(time: number): number;
// ...
}
Example 2: types function typescript
interface Param {
title: string;
callback: function;
}