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