diff options
Diffstat (limited to 'test/scripts/apidoc/module.example.ts')
| -rw-r--r-- | test/scripts/apidoc/module.example.ts | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/scripts/apidoc/module.example.ts b/test/scripts/apidoc/module.example.ts index 9671dc73..b3f43a86 100644 --- a/test/scripts/apidoc/module.example.ts +++ b/test/scripts/apidoc/module.example.ts @@ -1,4 +1,9 @@ /** + * A simple module without anything special. + */ +export class ModuleSimpleTest {} + +/** * Description with a link to our [website](https://fakerjs.dev/) * and [api docs](https://fakerjs.dev/api/). */ @@ -11,7 +16,14 @@ export class ModuleFakerJsLinkTest {} export class ModuleNextFakerJsLinkTest {} /** - * This is a description for a module with a code example + * This is a description for a module with a code example. + * + * @deprecated Well, this is deprecated. + */ +export class ModuleDeprecationTest {} + +/** + * This is a description for a module with a code example. * * @example * new ModuleExampleTest() |
