@@ -605,7 +605,6 @@ export default {
605
605
interface ITest {
606
606
/**
607
607
* Test description.
608
- *
609
608
* @param id
610
609
*/
611
610
TestMethod(id: number): void;
@@ -645,7 +644,6 @@ export default {
645
644
{
646
645
/**
647
646
* A test method.
648
- *
649
647
* @param id
650
648
*/
651
649
abstract TestFunction(id);
@@ -712,7 +710,6 @@ export default {
712
710
output : `
713
711
/**
714
712
* A test function.
715
- *
716
713
* @param id
717
714
*/
718
715
declare let TestFunction: (id) => void;
@@ -740,7 +737,6 @@ export default {
740
737
output : `
741
738
/**
742
739
* A test function.
743
- *
744
740
* @param id
745
741
*/
746
742
let TestFunction: (id) => void;
@@ -772,7 +768,6 @@ export default {
772
768
output : `
773
769
/**
774
770
* A test function.
775
- *
776
771
* @param id
777
772
*/
778
773
function test(
@@ -807,7 +802,6 @@ export default {
807
802
output : `
808
803
/**
809
804
* A test function.
810
- *
811
805
* @param id
812
806
*/
813
807
let test = (processor: (id: number) => string) =>
@@ -841,7 +835,6 @@ export default {
841
835
class TestClass {
842
836
/**
843
837
* A class property.
844
- *
845
838
* @param id
846
839
*/
847
840
public Test: (id: number) => string;
@@ -875,7 +868,6 @@ export default {
875
868
class TestClass {
876
869
/**
877
870
* A class method.
878
- *
879
871
* @param id
880
872
*/
881
873
public TestMethod(): (id: number) => string
@@ -909,7 +901,6 @@ export default {
909
901
interface TestInterface {
910
902
/**
911
903
* An interface property.
912
- *
913
904
* @param id
914
905
*/
915
906
public Test: (id: number) => string;
@@ -941,7 +932,6 @@ export default {
941
932
interface TestInterface {
942
933
/**
943
934
* An interface method.
944
- *
945
935
* @param id
946
936
*/
947
937
public TestMethod(): (id: number) => string;
@@ -970,7 +960,6 @@ export default {
970
960
output : `
971
961
/**
972
962
* A function with return type
973
- *
974
963
* @param id
975
964
*/
976
965
function test(): (id: number) => string;
@@ -1001,7 +990,6 @@ export default {
1001
990
output : `
1002
991
/**
1003
992
* A function with return type
1004
- *
1005
993
* @param id
1006
994
*/
1007
995
let test = (): (id: number) => string =>
0 commit comments