📜  类型函数打字稿代码示例

📅  最后修改于: 2022-03-11 14:48:20.651000             🧑  作者: Mango

代码示例2
interface Better_still_safe_but_way_more_flexible_fix {
    title: string;
    callback: (args?: T) => R;
}
interface Alternate_Syntax_4_Better_still_safe_but_way_more_flexible_fix {
    title: string;
    callback(args?: T): R;
}