Skip to content

Commit 988b3a2

Browse files
committed
docs: generate docs
1 parent e95c189 commit 988b3a2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,13 @@ function quux ([a, b] = []) {
980980
function assign (employees) {
981981

982982
};
983+
984+
export class SomeClass {
985+
/**
986+
* @param property
987+
*/
988+
constructor(private property: string) {}
989+
}
983990
````
984991

985992

@@ -4942,6 +4949,13 @@ var A = class {
49424949

49434950
}
49444951
}
4952+
4953+
export class SomeClass {
4954+
/**
4955+
* @param property
4956+
*/
4957+
constructor(private property: string) {}
4958+
}
49454959
````
49464960

49474961

0 commit comments

Comments
 (0)