• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * the ut for method in sourcefile, method has error codes
3 *
4 * @throws { BusinessError } 401 - The parameter check failed.
5 */
6export declare function test1(param1: string): number;
7
8/**
9 * the ut for method in sourcefile, method has error codes
10 *
11 * @throws { BusinessError } 401 - The parameter check failed.
12 * @throws { BusinessError } 402 - The parameter check failed.
13 */
14export declare function test2(param1: string): number;
15
16/**
17 * the ut for method in sourcefile, method has error codes but forget to write
18 *
19 * @throws { BusinessError } The parameter check failed.
20 */
21export declare function test1(param1: string): number;