aboutsummaryrefslogtreecommitdiff
path: root/test/scripts/apidoc/module.example.ts
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2024-04-01 10:21:18 +0200
committerGitHub <[email protected]>2024-04-01 10:21:18 +0200
commit6191a5d883048b694404dbf42527caba395828ea (patch)
treed0f18f17789cb0bbdb5d6087f1a95772438dfe27 /test/scripts/apidoc/module.example.ts
parent7dae52bfcd93c41ec9d2c4dd4d96a07f31c3dfc1 (diff)
downloadfaker-6191a5d883048b694404dbf42527caba395828ea.tar.xz
faker-6191a5d883048b694404dbf42527caba395828ea.zip
docs: rewrite api-docs generation using ts-morph (#2628)
Diffstat (limited to 'test/scripts/apidoc/module.example.ts')
-rw-r--r--test/scripts/apidoc/module.example.ts33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/scripts/apidoc/module.example.ts b/test/scripts/apidoc/module.example.ts
deleted file mode 100644
index 0e5d9d89..00000000
--- a/test/scripts/apidoc/module.example.ts
+++ /dev/null
@@ -1,33 +0,0 @@
-/* eslint-disable @typescript-eslint/no-extraneous-class -- required for tests */
-
-/**
- * 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/).
- */
-export class ModuleFakerJsLinkTest {}
-
-/**
- * Description with a link to our [website](https://next.fakerjs.dev/)
- * and [api docs](https://next.fakerjs.dev/api/).
- */
-export class ModuleNextFakerJsLinkTest {}
-
-/**
- * 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()
- */
-export class ModuleExampleTest {}