diff options
Diffstat (limited to 'test/scripts/apidocs/method.example.ts')
| -rw-r--r-- | test/scripts/apidocs/method.example.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/scripts/apidocs/method.example.ts b/test/scripts/apidocs/method.example.ts index 73632b42..0012f4fa 100644 --- a/test/scripts/apidocs/method.example.ts +++ b/test/scripts/apidocs/method.example.ts @@ -448,6 +448,30 @@ export class SignatureTest { } /** + * Test with remark marker. + * + * @remark This text is special. + * + * @since 1.0.0 + */ + methodWithRemark(): number { + return 0; + } + + /** + * Test with multiple remark markers. + * + * @remark First special text. + * @remark Second special text. + * @remark Thrid special text. + * + * @since 1.0.0 + */ + methodWithMultipleRemarks(): number { + return 0; + } + + /** * Complex array parameter. * * @template T The type of the entries to pick from. |
