Skip to content

Commit cdc3048

Browse files
committed
docs: generate docs
1 parent e9e78d3 commit cdc3048

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4746,6 +4746,22 @@ function quux (foo) {
47464746

47474747
}
47484748

4749+
/**
4750+
* @augments
4751+
*/
4752+
function quux (foo) {
4753+
4754+
}
4755+
// Settings: {"jsdoc":{"augmentsExtendsReplacesDocs":true}}
4756+
4757+
/**
4758+
* @extends
4759+
*/
4760+
function quux (foo) {
4761+
4762+
}
4763+
// Settings: {"jsdoc":{"augmentsExtendsReplacesDocs":true}}
4764+
47494765
/**
47504766
* @override
47514767
*/
@@ -4846,6 +4862,32 @@ class A {
48464862
}
48474863
}
48484864

4865+
/**
4866+
* @augments
4867+
*/
4868+
class A {
4869+
/**
4870+
*
4871+
*/
4872+
quux (foo) {
4873+
4874+
}
4875+
}
4876+
// Settings: {"jsdoc":{"augmentsExtendsReplacesDocs":true}}
4877+
4878+
/**
4879+
* @extends
4880+
*/
4881+
class A {
4882+
/**
4883+
*
4884+
*/
4885+
quux (foo) {
4886+
4887+
}
4888+
}
4889+
// Settings: {"jsdoc":{"augmentsExtendsReplacesDocs":true}}
4890+
48494891
/**
48504892
* @private
48514893
*/

0 commit comments

Comments
 (0)