2021-07-15 21:59:57 +01:00
|
|
|
/* eslint-disable no-unused-vars */
|
2020-05-13 17:01:10 +01:00
|
|
|
export class TestClass {
|
|
|
|
|
method1(
|
|
|
|
|
/** description of param1 */ param1: number,
|
|
|
|
|
/** description of param2 */ param2?: string,
|
2021-07-15 21:59:57 +01:00
|
|
|
/** description of param3 */ param3: unknown = {},
|
2020-05-13 17:01:10 +01:00
|
|
|
/** description of param4 */ param4 = 'default string',
|
|
|
|
|
) {
|
|
|
|
|
///
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Some description of method 2
|
2021-07-15 21:59:57 +01:00
|
|
|
*
|
2020-05-13 17:01:10 +01:00
|
|
|
* @param param5 description of param5
|
|
|
|
|
* @param param6 description of param6
|
|
|
|
|
* @param param7 description of param7
|
|
|
|
|
*/
|
|
|
|
|
method2(param5: string, param6: number, param7 = 42) {
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
}
|