📅  最后修改于: 2022-03-11 14:48:20.651000             🧑  作者: Mango
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;
}