From 04e8b7bab82069bf60961580e353e36096bc2120 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Tue, 17 Jun 2025 21:30:05 +0200 Subject: docs: add remarks about external sources (#3452) --- test/scripts/apidocs/method.example.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'test/scripts/apidocs/method.example.ts') 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 @@ -447,6 +447,30 @@ export class SignatureTest { return 0; } + /** + * 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. * -- cgit v1.2.3