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