1/** 2 * the ut for method in interface, which has params and return value 3 */ 4export interface Test { 5 test(param1: string): number; 6}