1/**interface 2 * the ut for method in interface, method is promise 3 */ 4export interface Test { 5 test(param1: string): Promise<Want>; 6}