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